From c235afb30f4953d796a4a26236c6c58764f28850 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Fri, 24 Mar 2017 21:01:08 +0100 Subject: [PATCH] Added support for 32 bit systems, imimplemented threading. --- .env.calls | 8 +- README.md | 6 +- bot.php | 3 + calls | 171757 --------------- calls.php | 2 +- src/danog/MadelineProto/API.php | 10 +- src/danog/MadelineProto/APIFactory.php | 2 +- src/danog/MadelineProto/Connection.php | 14 +- src/danog/MadelineProto/DataCenter.php | 36 +- src/danog/MadelineProto/Exception.php | 7 + src/danog/MadelineProto/Logger.php | 35 +- src/danog/MadelineProto/Lua.php | 4 +- src/danog/MadelineProto/MTProto.php | 230 +- .../MadelineProto/MTProtoTools/AckHandler.php | 19 +- .../MTProtoTools/AuthKeyHandler.php | 241 +- .../MTProtoTools/CallHandler.php | 104 +- .../MadelineProto/MTProtoTools/Files.php | 22 +- .../MTProtoTools/MessageHandler.php | 140 +- .../MTProtoTools/MsgIdHandler.php | 82 +- .../MTProtoTools/PeerHandler.php | 18 +- .../MTProtoTools/ResponseHandler.php | 276 +- .../MTProtoTools/SaltHandler.php | 4 +- .../MTProtoTools/SeqNoHandler.php | 52 +- .../MTProtoTools/UpdateHandler.php | 21 +- src/danog/MadelineProto/RSA.php | 4 +- .../SecretChats/AuthKeyHandler.php | 206 + .../SecretChats/MessageHandler.php | 86 + .../{ => TL}/Conversion/BotAPI.php | 4 +- .../{ => TL}/Conversion/BotAPIFiles.php | 2 +- .../{ => TL}/Conversion/Exception.php | 2 +- .../{ => TL}/Conversion/Extension.php | 2 +- .../MadelineProto/{ => TL}/Conversion/TD.php | 4 +- src/danog/MadelineProto/TL/TL.php | 61 +- .../MadelineProto/Threads/SocketHandler.php | 105 +- .../MadelineProto/Threads/SocketReader.php | 47 +- src/danog/MadelineProto/Wrappers/Login.php | 88 +- tests/testing.php | 4 +- 37 files changed, 1072 insertions(+), 172636 deletions(-) delete mode 100644 calls create mode 100644 src/danog/MadelineProto/SecretChats/AuthKeyHandler.php create mode 100644 src/danog/MadelineProto/SecretChats/MessageHandler.php rename src/danog/MadelineProto/{ => TL}/Conversion/BotAPI.php (99%) rename src/danog/MadelineProto/{ => TL}/Conversion/BotAPIFiles.php (99%) rename src/danog/MadelineProto/{ => TL}/Conversion/Exception.php (94%) rename src/danog/MadelineProto/{ => TL}/Conversion/Extension.php (99%) rename src/danog/MadelineProto/{ => TL}/Conversion/TD.php (97%) diff --git a/.env.calls b/.env.calls index 73e00987..5c321e81 100644 --- a/.env.calls +++ b/.env.calls @@ -1,6 +1,2 @@ -MTPROTO_NUMBER=+39373739 -MTPROTO_SETTINGS={"app_info":{"api_id":6,"api_hash":"eb06d4abfb49dc3eeb1aeb98ae0f581e"}, "connection_settings":{"all":{"test_mode":true}}} -TEST_USERNAME=@danogentili -TEST_DESTINATION_GROUPS=["@danogentili"] -BOT_TOKEN=299050432:AAGMdcyfqGTpwCo0bJkmlomHwMUieXRs8GY - +MTPROTO_NUMBER=+393924682693 +MTPROTO_SETTINGS={"app_info":{"api_id":6,"api_hash":"eb06d4abfb49dc3eeb1aeb98ae0f581e"},"connection_settings":{"all":{"test_mode":true}}} diff --git a/README.md b/README.md index ddca8de8..bf998d44 100644 --- a/README.md +++ b/README.md @@ -336,7 +336,7 @@ Before sending any message, you must check if the secret chat was accepted by th ``` -$status = $MadelineProto->secret_chat_info($chat); +$status = $MadelineProto->secret_chat_status($chat); ``` Returns 0 if the chat cannot be found in the local database, 1 if the chat was requested but not yet accepted, and 2 if it is a valid accepted secret chat. @@ -455,7 +455,7 @@ The same operation should be done when serializing to another destination manual ### Exceptions -MadelineProto can throw three different exceptions: +MadelineProto can throw lots of different exceptions: * \danog\MadelineProto\Exception - Default exception, thrown when a php error occures and in a lot of other cases * \danog\MadelineProto\RPCErrorException - Thrown when an RPC error occurres (an error received via the mtproto API) @@ -466,7 +466,7 @@ MadelineProto can throw three different exceptions: * \danog\MadelineProto\SecurityException - Thrown on security problems (invalid params during generation of auth key or similar) -* \danog\MadelineProto\Conversion\Exception - Thrown if some param/object can't be converted to/from bot API/TD/TD-CLI format (this includes markdown/html parsing) +* \danog\MadelineProto\TL\Conversion\Exception - Thrown if some param/object can't be converted to/from bot API/TD/TD-CLI format (this includes markdown/html parsing) diff --git a/bot.php b/bot.php index 74f10c5d..0d1479e1 100755 --- a/bot.php +++ b/bot.php @@ -22,6 +22,9 @@ try { $MadelineProto = new \danog\MadelineProto\API($settings); $authorization = $MadelineProto->bot_login($token); \danog\MadelineProto\Logger::log([$authorization], \danog\MadelineProto\Logger::NOTICE); + } else { + echo 'token.php does not exist'; + die; } } $offset = 0; diff --git a/calls b/calls deleted file mode 100644 index 54b59eed..00000000 --- a/calls +++ /dev/null @@ -1,171757 +0,0 @@ -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28143 + pts count: 1 = new pts: 28144. update pts: 28115 < new pts 28144, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 434143 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28143 + pts count: 1 = new pts: 28144. update pts: 28115 < new pts 28144, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 441462 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28144 + pts count: 1 = new pts: 28145. update pts: 28115 < new pts 28145, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 450448 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28145 + pts count: 1 = new pts: 28146. update pts: 28115 < new pts 28146, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28145 + pts count: 1 = new pts: 28146, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 464285 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28147 + pts count: 1 = new pts: 28148, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28148 + pts count: 1 = new pts: 28149. update pts: 28115 < new pts 28149, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 477735 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28149 + pts count: 1 = new pts: 28150, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28150 + pts count: 1 = new pts: 28151. update pts: 28115 < new pts 28151, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 487457 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28151 + pts count: 1 = new pts: 28152, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28152 + pts count: 1 = new pts: 28153. update pts: 28115 < new pts 28153, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 497950 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28153 + pts count: 1 = new pts: 28154. update pts: 28115 < new pts 28154, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 507279 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28155 + pts count: 1 = new pts: 28156. update pts: 28115 < new pts 28156, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28155, pts count: 1, new pts: 28156 < update pts: 28157, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 524898 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28157 + pts count: 1 = new pts: 28158. update pts: 28115 < new pts 28158, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28157, pts count: 1, new pts: 28158 < update pts: 28159, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 539850 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28159 + pts count: 1 = new pts: 28160, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28160 + pts count: 1 = new pts: 28161. update pts: 28115 < new pts 28161, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 550350 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28161 + pts count: 1 = new pts: 28162. update pts: 28115 < new pts 28162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28161 + pts count: 1 = new pts: 28162, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 561229 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28163 + pts count: 1 = new pts: 28164. update pts: 28115 < new pts 28164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28163 + pts count: 1 = new pts: 28164. update pts: 28162 < new pts 28164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28163 + pts count: 1 = new pts: 28164, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 571261 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28165, pts count: 1, new pts: 28166 < update pts: 28167, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28167 + pts count: 1 = new pts: 28168. update pts: 28115 < new pts 28168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28167 + pts count: 1 = new pts: 28168. update pts: 28162 < new pts 28168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28167 + pts count: 1 = new pts: 28168. update pts: 28164 < new pts 28168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28167 + pts count: 1 = new pts: 28168. update pts: 28166 < new pts 28168, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 585228 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28167, pts count: 1, new pts: 28168 < update pts: 28169, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28169 + pts count: 1 = new pts: 28170. update pts: 28115 < new pts 28170, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28169 + pts count: 1 = new pts: 28170. update pts: 28162 < new pts 28170, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28169 + pts count: 1 = new pts: 28170. update pts: 28164 < new pts 28170, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28169 + pts count: 1 = new pts: 28170. update pts: 28166 < new pts 28170, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28169 + pts count: 1 = new pts: 28170. update pts: 28168 < new pts 28170, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 602156 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28169 + pts count: 1 = new pts: 28170. update pts: 28115 < new pts 28170, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28169 + pts count: 1 = new pts: 28170. update pts: 28162 < new pts 28170, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28169 + pts count: 1 = new pts: 28170. update pts: 28164 < new pts 28170, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28169 + pts count: 1 = new pts: 28170. update pts: 28166 < new pts 28170, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28169 + pts count: 1 = new pts: 28170. update pts: 28168 < new pts 28170, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 611497 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28171, pts count: 1, new pts: 28172 < update pts: 28173, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28173 + pts count: 1 = new pts: 28174. update pts: 28115 < new pts 28174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28173 + pts count: 1 = new pts: 28174. update pts: 28162 < new pts 28174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28173 + pts count: 1 = new pts: 28174. update pts: 28164 < new pts 28174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28173 + pts count: 1 = new pts: 28174. update pts: 28166 < new pts 28174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28173 + pts count: 1 = new pts: 28174. update pts: 28168 < new pts 28174, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 624600 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28173, pts count: 1, new pts: 28174 < update pts: 28175, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28176 + pts count: 1 = new pts: 28177. update pts: 28115 < new pts 28177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28176 + pts count: 1 = new pts: 28177. update pts: 28162 < new pts 28177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28176 + pts count: 1 = new pts: 28177. update pts: 28164 < new pts 28177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28176 + pts count: 1 = new pts: 28177. update pts: 28166 < new pts 28177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28176 + pts count: 1 = new pts: 28177. update pts: 28168 < new pts 28177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28176 + pts count: 1 = new pts: 28177. update pts: 28174 < new pts 28177, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 639672 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28176 + pts count: 1 = new pts: 28177. update pts: 28115 < new pts 28177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28176 + pts count: 1 = new pts: 28177. update pts: 28162 < new pts 28177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28176 + pts count: 1 = new pts: 28177. update pts: 28164 < new pts 28177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28176 + pts count: 1 = new pts: 28177. update pts: 28166 < new pts 28177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28176 + pts count: 1 = new pts: 28177. update pts: 28168 < new pts 28177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28176 + pts count: 1 = new pts: 28177. update pts: 28174 < new pts 28177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28176 + pts count: 1 = new pts: 28177, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 650051 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28179 + pts count: 1 = new pts: 28180, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28180 + pts count: 1 = new pts: 28181. update pts: 28115 < new pts 28181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28180 + pts count: 1 = new pts: 28181. update pts: 28162 < new pts 28181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28180 + pts count: 1 = new pts: 28181. update pts: 28164 < new pts 28181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28180 + pts count: 1 = new pts: 28181. update pts: 28166 < new pts 28181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28180 + pts count: 1 = new pts: 28181. update pts: 28168 < new pts 28181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28180 + pts count: 1 = new pts: 28181. update pts: 28174 < new pts 28181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28180 + pts count: 1 = new pts: 28181. update pts: 28177 < new pts 28181, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 656676 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28180 + pts count: 1 = new pts: 28181. update pts: 28115 < new pts 28181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28180 + pts count: 1 = new pts: 28181. update pts: 28162 < new pts 28181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28180 + pts count: 1 = new pts: 28181. update pts: 28164 < new pts 28181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28180 + pts count: 1 = new pts: 28181. update pts: 28166 < new pts 28181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28180 + pts count: 1 = new pts: 28181. update pts: 28168 < new pts 28181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28180 + pts count: 1 = new pts: 28181. update pts: 28174 < new pts 28181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28180 + pts count: 1 = new pts: 28181. update pts: 28177 < new pts 28181, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 665265 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28181 + pts count: 1 = new pts: 28182. update pts: 28115 < new pts 28182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28181 + pts count: 1 = new pts: 28182. update pts: 28162 < new pts 28182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28181 + pts count: 1 = new pts: 28182. update pts: 28164 < new pts 28182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28181 + pts count: 1 = new pts: 28182. update pts: 28166 < new pts 28182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28181 + pts count: 1 = new pts: 28182. update pts: 28168 < new pts 28182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28181 + pts count: 1 = new pts: 28182. update pts: 28174 < new pts 28182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28181 + pts count: 1 = new pts: 28182. update pts: 28177 < new pts 28182, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28183 + pts count: 1 = new pts: 28184, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 674552 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28184 + pts count: 1 = new pts: 28185. update pts: 28115 < new pts 28185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28184 + pts count: 1 = new pts: 28185. update pts: 28162 < new pts 28185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28184 + pts count: 1 = new pts: 28185. update pts: 28164 < new pts 28185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28184 + pts count: 1 = new pts: 28185. update pts: 28166 < new pts 28185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28184 + pts count: 1 = new pts: 28185. update pts: 28168 < new pts 28185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28184 + pts count: 1 = new pts: 28185. update pts: 28174 < new pts 28185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28184 + pts count: 1 = new pts: 28185. update pts: 28177 < new pts 28185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28184 + pts count: 1 = new pts: 28185, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 685180 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28186 + pts count: 1 = new pts: 28187. update pts: 28115 < new pts 28187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28186 + pts count: 1 = new pts: 28187. update pts: 28162 < new pts 28187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28186 + pts count: 1 = new pts: 28187. update pts: 28164 < new pts 28187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28186 + pts count: 1 = new pts: 28187. update pts: 28166 < new pts 28187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28186 + pts count: 1 = new pts: 28187. update pts: 28168 < new pts 28187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28186 + pts count: 1 = new pts: 28187. update pts: 28174 < new pts 28187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28186 + pts count: 1 = new pts: 28187. update pts: 28177 < new pts 28187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28186 + pts count: 1 = new pts: 28187. update pts: 28185 < new pts 28187, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 692108 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28187 + pts count: 1 = new pts: 28188. update pts: 28115 < new pts 28188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28187 + pts count: 1 = new pts: 28188. update pts: 28162 < new pts 28188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28187 + pts count: 1 = new pts: 28188. update pts: 28164 < new pts 28188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28187 + pts count: 1 = new pts: 28188. update pts: 28166 < new pts 28188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28187 + pts count: 1 = new pts: 28188. update pts: 28168 < new pts 28188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28187 + pts count: 1 = new pts: 28188. update pts: 28174 < new pts 28188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28187 + pts count: 1 = new pts: 28188. update pts: 28177 < new pts 28188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28187 + pts count: 1 = new pts: 28188. update pts: 28185 < new pts 28188, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 699420 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28189 + pts count: 1 = new pts: 28190. update pts: 28115 < new pts 28190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28189 + pts count: 1 = new pts: 28190. update pts: 28162 < new pts 28190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28189 + pts count: 1 = new pts: 28190. update pts: 28164 < new pts 28190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28189 + pts count: 1 = new pts: 28190. update pts: 28166 < new pts 28190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28189 + pts count: 1 = new pts: 28190. update pts: 28168 < new pts 28190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28189 + pts count: 1 = new pts: 28190. update pts: 28174 < new pts 28190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28189 + pts count: 1 = new pts: 28190. update pts: 28177 < new pts 28190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28189 + pts count: 1 = new pts: 28190. update pts: 28185 < new pts 28190, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 706747 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28191 + pts count: 1 = new pts: 28192, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28192 + pts count: 1 = new pts: 28193. update pts: 28115 < new pts 28193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28192 + pts count: 1 = new pts: 28193. update pts: 28162 < new pts 28193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28192 + pts count: 1 = new pts: 28193. update pts: 28164 < new pts 28193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28192 + pts count: 1 = new pts: 28193. update pts: 28166 < new pts 28193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28192 + pts count: 1 = new pts: 28193. update pts: 28168 < new pts 28193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28192 + pts count: 1 = new pts: 28193. update pts: 28174 < new pts 28193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28192 + pts count: 1 = new pts: 28193. update pts: 28177 < new pts 28193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28192 + pts count: 1 = new pts: 28193. update pts: 28185 < new pts 28193, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 715011 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28193 + pts count: 1 = new pts: 28194. update pts: 28115 < new pts 28194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28193 + pts count: 1 = new pts: 28194. update pts: 28162 < new pts 28194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28193 + pts count: 1 = new pts: 28194. update pts: 28164 < new pts 28194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28193 + pts count: 1 = new pts: 28194. update pts: 28166 < new pts 28194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28193 + pts count: 1 = new pts: 28194. update pts: 28168 < new pts 28194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28193 + pts count: 1 = new pts: 28194. update pts: 28174 < new pts 28194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28193 + pts count: 1 = new pts: 28194. update pts: 28177 < new pts 28194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28193 + pts count: 1 = new pts: 28194. update pts: 28185 < new pts 28194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28193 + pts count: 1 = new pts: 28194, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 723651 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28195 + pts count: 1 = new pts: 28196. update pts: 28115 < new pts 28196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28195 + pts count: 1 = new pts: 28196. update pts: 28162 < new pts 28196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28195 + pts count: 1 = new pts: 28196. update pts: 28164 < new pts 28196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28195 + pts count: 1 = new pts: 28196. update pts: 28166 < new pts 28196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28195 + pts count: 1 = new pts: 28196. update pts: 28168 < new pts 28196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28195 + pts count: 1 = new pts: 28196. update pts: 28174 < new pts 28196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28195 + pts count: 1 = new pts: 28196. update pts: 28177 < new pts 28196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28195 + pts count: 1 = new pts: 28196. update pts: 28185 < new pts 28196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28195 + pts count: 1 = new pts: 28196. update pts: 28194 < new pts 28196, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 730923 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28197 + pts count: 1 = new pts: 28198. update pts: 28115 < new pts 28198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28197 + pts count: 1 = new pts: 28198. update pts: 28162 < new pts 28198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28197 + pts count: 1 = new pts: 28198. update pts: 28164 < new pts 28198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28197 + pts count: 1 = new pts: 28198. update pts: 28166 < new pts 28198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28197 + pts count: 1 = new pts: 28198. update pts: 28168 < new pts 28198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28197 + pts count: 1 = new pts: 28198. update pts: 28174 < new pts 28198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28197 + pts count: 1 = new pts: 28198. update pts: 28177 < new pts 28198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28197 + pts count: 1 = new pts: 28198. update pts: 28185 < new pts 28198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28197 + pts count: 1 = new pts: 28198. update pts: 28194 < new pts 28198, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 738196 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28199, pts count: 1, new pts: 28200 < update pts: 28201, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28201 + pts count: 1 = new pts: 28202. update pts: 28115 < new pts 28202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28201 + pts count: 1 = new pts: 28202. update pts: 28162 < new pts 28202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28201 + pts count: 1 = new pts: 28202. update pts: 28164 < new pts 28202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28201 + pts count: 1 = new pts: 28202. update pts: 28166 < new pts 28202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28201 + pts count: 1 = new pts: 28202. update pts: 28168 < new pts 28202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28201 + pts count: 1 = new pts: 28202. update pts: 28174 < new pts 28202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28201 + pts count: 1 = new pts: 28202. update pts: 28177 < new pts 28202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28201 + pts count: 1 = new pts: 28202. update pts: 28185 < new pts 28202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28201 + pts count: 1 = new pts: 28202. update pts: 28194 < new pts 28202, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 748645 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28201, pts count: 1, new pts: 28202 < update pts: 28203, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28203 + pts count: 1 = new pts: 28204. update pts: 28115 < new pts 28204, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28203 + pts count: 1 = new pts: 28204. update pts: 28162 < new pts 28204, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28203 + pts count: 1 = new pts: 28204. update pts: 28164 < new pts 28204, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28203 + pts count: 1 = new pts: 28204. update pts: 28166 < new pts 28204, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28203 + pts count: 1 = new pts: 28204. update pts: 28168 < new pts 28204, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28203 + pts count: 1 = new pts: 28204. update pts: 28174 < new pts 28204, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28203 + pts count: 1 = new pts: 28204. update pts: 28177 < new pts 28204, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28203 + pts count: 1 = new pts: 28204. update pts: 28185 < new pts 28204, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28203 + pts count: 1 = new pts: 28204. update pts: 28194 < new pts 28204, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28203 + pts count: 1 = new pts: 28204. update pts: 28202 < new pts 28204, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 760193 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28203, pts count: 1, new pts: 28204 < update pts: 28205, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28115 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28162 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28164 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28166 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28168 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28174 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28177 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28185 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28194 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28202 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28204 < new pts 28206, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 774106 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28115 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28162 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28164 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28166 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28168 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28174 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28177 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28185 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28194 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28202 < new pts 28206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28205 + pts count: 1 = new pts: 28206. update pts: 28204 < new pts 28206, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 781413 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28207, pts count: 1, new pts: 28208 < update pts: 28209, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28115 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28162 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28164 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28166 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28168 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28174 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28177 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28185 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28194 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28202 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28204 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28208 < new pts 28210, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 792537 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28115 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28162 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28164 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28166 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28168 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28174 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28177 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28185 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28194 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28202 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28204 < new pts 28210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28209 + pts count: 1 = new pts: 28210. update pts: 28208 < new pts 28210, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 798887 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28211 + pts count: 1 = new pts: 28212, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28212 + pts count: 1 = new pts: 28213. update pts: 28115 < new pts 28213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28212 + pts count: 1 = new pts: 28213. update pts: 28162 < new pts 28213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28212 + pts count: 1 = new pts: 28213. update pts: 28164 < new pts 28213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28212 + pts count: 1 = new pts: 28213. update pts: 28166 < new pts 28213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28212 + pts count: 1 = new pts: 28213. update pts: 28168 < new pts 28213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28212 + pts count: 1 = new pts: 28213. update pts: 28174 < new pts 28213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28212 + pts count: 1 = new pts: 28213. update pts: 28177 < new pts 28213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28212 + pts count: 1 = new pts: 28213. update pts: 28185 < new pts 28213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28212 + pts count: 1 = new pts: 28213. update pts: 28194 < new pts 28213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28212 + pts count: 1 = new pts: 28213. update pts: 28202 < new pts 28213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28212 + pts count: 1 = new pts: 28213. update pts: 28204 < new pts 28213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28212 + pts count: 1 = new pts: 28213. update pts: 28208 < new pts 28213, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 800672 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28213 + pts count: 1 = new pts: 28214, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28214 + pts count: 1 = new pts: 28215. update pts: 28115 < new pts 28215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28214 + pts count: 1 = new pts: 28215. update pts: 28162 < new pts 28215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28214 + pts count: 1 = new pts: 28215. update pts: 28164 < new pts 28215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28214 + pts count: 1 = new pts: 28215. update pts: 28166 < new pts 28215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28214 + pts count: 1 = new pts: 28215. update pts: 28168 < new pts 28215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28214 + pts count: 1 = new pts: 28215. update pts: 28174 < new pts 28215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28214 + pts count: 1 = new pts: 28215. update pts: 28177 < new pts 28215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28214 + pts count: 1 = new pts: 28215. update pts: 28185 < new pts 28215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28214 + pts count: 1 = new pts: 28215. update pts: 28194 < new pts 28215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28214 + pts count: 1 = new pts: 28215. update pts: 28202 < new pts 28215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28214 + pts count: 1 = new pts: 28215. update pts: 28204 < new pts 28215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28214 + pts count: 1 = new pts: 28215. update pts: 28208 < new pts 28215, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 799307 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28215 + pts count: 1 = new pts: 28216, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28216 + pts count: 1 = new pts: 28217. update pts: 28115 < new pts 28217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28216 + pts count: 1 = new pts: 28217. update pts: 28162 < new pts 28217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28216 + pts count: 1 = new pts: 28217. update pts: 28164 < new pts 28217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28216 + pts count: 1 = new pts: 28217. update pts: 28166 < new pts 28217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28216 + pts count: 1 = new pts: 28217. update pts: 28168 < new pts 28217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28216 + pts count: 1 = new pts: 28217. update pts: 28174 < new pts 28217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28216 + pts count: 1 = new pts: 28217. update pts: 28177 < new pts 28217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28216 + pts count: 1 = new pts: 28217. update pts: 28185 < new pts 28217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28216 + pts count: 1 = new pts: 28217. update pts: 28194 < new pts 28217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28216 + pts count: 1 = new pts: 28217. update pts: 28202 < new pts 28217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28216 + pts count: 1 = new pts: 28217. update pts: 28204 < new pts 28217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28216 + pts count: 1 = new pts: 28217. update pts: 28208 < new pts 28217, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 802858 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28217, pts count: 1, new pts: 28218 < update pts: 28219, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28115 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28162 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28164 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28166 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28168 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28174 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28177 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28185 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28194 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28202 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28204 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28208 < new pts 28220, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 802745 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28115 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28162 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28164 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28166 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28168 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28174 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28177 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28185 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28194 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28202 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28204 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28219 + pts count: 1 = new pts: 28220. update pts: 28208 < new pts 28220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28219 + pts count: 1 = new pts: 28220, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 805318 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28221 + pts count: 1 = new pts: 28222. update pts: 28115 < new pts 28222, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28221 + pts count: 1 = new pts: 28222. update pts: 28162 < new pts 28222, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28221 + pts count: 1 = new pts: 28222. update pts: 28164 < new pts 28222, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28221 + pts count: 1 = new pts: 28222. update pts: 28166 < new pts 28222, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28221 + pts count: 1 = new pts: 28222. update pts: 28168 < new pts 28222, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28221 + pts count: 1 = new pts: 28222. update pts: 28174 < new pts 28222, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28221 + pts count: 1 = new pts: 28222. update pts: 28177 < new pts 28222, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28221 + pts count: 1 = new pts: 28222. update pts: 28185 < new pts 28222, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28221 + pts count: 1 = new pts: 28222. update pts: 28194 < new pts 28222, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28221 + pts count: 1 = new pts: 28222. update pts: 28202 < new pts 28222, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28221 + pts count: 1 = new pts: 28222. update pts: 28204 < new pts 28222, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28221 + pts count: 1 = new pts: 28222. update pts: 28208 < new pts 28222, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28221 + pts count: 1 = new pts: 28222. update pts: 28220 < new pts 28222, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28221 + pts count: 1 = new pts: 28222, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 803324 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28223 + pts count: 1 = new pts: 28224, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28224 + pts count: 1 = new pts: 28225. update pts: 28115 < new pts 28225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28224 + pts count: 1 = new pts: 28225. update pts: 28162 < new pts 28225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28224 + pts count: 1 = new pts: 28225. update pts: 28164 < new pts 28225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28224 + pts count: 1 = new pts: 28225. update pts: 28166 < new pts 28225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28224 + pts count: 1 = new pts: 28225. update pts: 28168 < new pts 28225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28224 + pts count: 1 = new pts: 28225. update pts: 28174 < new pts 28225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28224 + pts count: 1 = new pts: 28225. update pts: 28177 < new pts 28225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28224 + pts count: 1 = new pts: 28225. update pts: 28185 < new pts 28225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28224 + pts count: 1 = new pts: 28225. update pts: 28194 < new pts 28225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28224 + pts count: 1 = new pts: 28225. update pts: 28202 < new pts 28225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28224 + pts count: 1 = new pts: 28225. update pts: 28204 < new pts 28225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28224 + pts count: 1 = new pts: 28225. update pts: 28208 < new pts 28225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28224 + pts count: 1 = new pts: 28225. update pts: 28220 < new pts 28225, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShortMessage. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28225 + pts count: 1 = new pts: 28226, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 804476 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28226 + pts count: 1 = new pts: 28227. update pts: 28115 < new pts 28227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28226 + pts count: 1 = new pts: 28227. update pts: 28162 < new pts 28227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28226 + pts count: 1 = new pts: 28227. update pts: 28164 < new pts 28227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28226 + pts count: 1 = new pts: 28227. update pts: 28166 < new pts 28227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28226 + pts count: 1 = new pts: 28227. update pts: 28168 < new pts 28227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28226 + pts count: 1 = new pts: 28227. update pts: 28174 < new pts 28227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28226 + pts count: 1 = new pts: 28227. update pts: 28177 < new pts 28227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28226 + pts count: 1 = new pts: 28227. update pts: 28185 < new pts 28227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28226 + pts count: 1 = new pts: 28227. update pts: 28194 < new pts 28227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28226 + pts count: 1 = new pts: 28227. update pts: 28202 < new pts 28227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28226 + pts count: 1 = new pts: 28227. update pts: 28204 < new pts 28227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28226 + pts count: 1 = new pts: 28227. update pts: 28208 < new pts 28227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28226 + pts count: 1 = new pts: 28227. update pts: 28220 < new pts 28227, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28229 + pts count: 1 = new pts: 28230, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -Wrote 806075 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28229 + pts count: 1 = new pts: 28230. update pts: 28115 < new pts 28230, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28230 + pts count: 1 = new pts: 28231. update pts: 28115 < new pts 28231, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28230 + pts count: 1 = new pts: 28231. update pts: 28162 < new pts 28231, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28230 + pts count: 1 = new pts: 28231. update pts: 28164 < new pts 28231, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28230 + pts count: 1 = new pts: 28231. update pts: 28166 < new pts 28231, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28230 + pts count: 1 = new pts: 28231. update pts: 28168 < new pts 28231, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28230 + pts count: 1 = new pts: 28231. update pts: 28174 < new pts 28231, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28230 + pts count: 1 = new pts: 28231. update pts: 28177 < new pts 28231, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28230 + pts count: 1 = new pts: 28231. update pts: 28185 < new pts 28231, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28230 + pts count: 1 = new pts: 28231. update pts: 28194 < new pts 28231, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28230 + pts count: 1 = new pts: 28231. update pts: 28202 < new pts 28231, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28230 + pts count: 1 = new pts: 28231. update pts: 28204 < new pts 28231, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28230 + pts count: 1 = new pts: 28231. update pts: 28208 < new pts 28231, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28230 + pts count: 1 = new pts: 28231. update pts: 28220 < new pts 28231, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 444622 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28232 + pts count: 1 = new pts: 28233. update pts: 28115 < new pts 28233, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 814355 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28233, pts count: 1, new pts: 28234 < update pts: 28235, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28235 + pts count: 1 = new pts: 28236. update pts: 28115 < new pts 28236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28235 + pts count: 1 = new pts: 28236. update pts: 28162 < new pts 28236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28235 + pts count: 1 = new pts: 28236. update pts: 28164 < new pts 28236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28235 + pts count: 1 = new pts: 28236. update pts: 28166 < new pts 28236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28235 + pts count: 1 = new pts: 28236. update pts: 28168 < new pts 28236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28235 + pts count: 1 = new pts: 28236. update pts: 28174 < new pts 28236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28235 + pts count: 1 = new pts: 28236. update pts: 28177 < new pts 28236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28235 + pts count: 1 = new pts: 28236. update pts: 28185 < new pts 28236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28235 + pts count: 1 = new pts: 28236. update pts: 28194 < new pts 28236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28235 + pts count: 1 = new pts: 28236. update pts: 28202 < new pts 28236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28235 + pts count: 1 = new pts: 28236. update pts: 28204 < new pts 28236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28235 + pts count: 1 = new pts: 28236. update pts: 28208 < new pts 28236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28235 + pts count: 1 = new pts: 28236. update pts: 28220 < new pts 28236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28235 + pts count: 1 = new pts: 28236. update pts: 28234 < new pts 28236, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 457061 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28235 + pts count: 1 = new pts: 28236, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28236 + pts count: 1 = new pts: 28237. update pts: 28115 < new pts 28237, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28236, pts count: 1, new pts: 28237 < update pts: 28238, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 819249 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -Wrote 475859 bytes -AuthKeyHandler, danogentili: Calling 252591... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -UpdateHandler, danogentili: Duplicate update. current pts: 28236 + pts count: 1 = new pts: 28237. update pts: 28115 < new pts 28237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28236 + pts count: 1 = new pts: 28237. update pts: 28162 < new pts 28237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28236 + pts count: 1 = new pts: 28237. update pts: 28164 < new pts 28237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28236 + pts count: 1 = new pts: 28237. update pts: 28166 < new pts 28237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28236 + pts count: 1 = new pts: 28237. update pts: 28168 < new pts 28237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28236 + pts count: 1 = new pts: 28237. update pts: 28174 < new pts 28237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28236 + pts count: 1 = new pts: 28237. update pts: 28177 < new pts 28237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28236 + pts count: 1 = new pts: 28237. update pts: 28185 < new pts 28237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28236 + pts count: 1 = new pts: 28237. update pts: 28194 < new pts 28237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28236 + pts count: 1 = new pts: 28237. update pts: 28202 < new pts 28237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28236 + pts count: 1 = new pts: 28237. update pts: 28204 < new pts 28237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28236 + pts count: 1 = new pts: 28237. update pts: 28208 < new pts 28237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28236 + pts count: 1 = new pts: 28237. update pts: 28220 < new pts 28237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28236 + pts count: 1 = new pts: 28237. update pts: 28234 < new pts 28237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28236 + pts count: 1 = new pts: 28237, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28239 + pts count: 1 = new pts: 28240, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28237, pts count: 1, new pts: 28238 < update pts: 28241, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28240 + pts count: 1 = new pts: 28241. update pts: 28115 < new pts 28241, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 486354 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28241, pts count: 1, new pts: 28242 < update pts: 28243, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -Wrote 827161 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28245 + pts count: 1 = new pts: 28246. update pts: 28115 < new pts 28246, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28241 + pts count: 1 = new pts: 28242. update pts: 28115 < new pts 28242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28241 + pts count: 1 = new pts: 28242. update pts: 28162 < new pts 28242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28241 + pts count: 1 = new pts: 28242. update pts: 28164 < new pts 28242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28241 + pts count: 1 = new pts: 28242. update pts: 28166 < new pts 28242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28241 + pts count: 1 = new pts: 28242. update pts: 28168 < new pts 28242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28241 + pts count: 1 = new pts: 28242. update pts: 28174 < new pts 28242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28241 + pts count: 1 = new pts: 28242. update pts: 28177 < new pts 28242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28241 + pts count: 1 = new pts: 28242. update pts: 28185 < new pts 28242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28241 + pts count: 1 = new pts: 28242. update pts: 28194 < new pts 28242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28241 + pts count: 1 = new pts: 28242. update pts: 28202 < new pts 28242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28241 + pts count: 1 = new pts: 28242. update pts: 28204 < new pts 28242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28241 + pts count: 1 = new pts: 28242. update pts: 28208 < new pts 28242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28241 + pts count: 1 = new pts: 28242. update pts: 28220 < new pts 28242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28241 + pts count: 1 = new pts: 28242. update pts: 28234 < new pts 28242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28241 + pts count: 1 = new pts: 28242. update pts: 28237 < new pts 28242, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 508990 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28245 + pts count: 1 = new pts: 28246. update pts: 28115 < new pts 28246, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28245, pts count: 1, new pts: 28246 < update pts: 28247, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 831451 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 536053 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28246 + pts count: 1 = new pts: 28247. update pts: 28115 < new pts 28247, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28246 + pts count: 1 = new pts: 28247. update pts: 28162 < new pts 28247, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28246 + pts count: 1 = new pts: 28247. update pts: 28164 < new pts 28247, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28246 + pts count: 1 = new pts: 28247. update pts: 28166 < new pts 28247, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28246 + pts count: 1 = new pts: 28247. update pts: 28168 < new pts 28247, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28246 + pts count: 1 = new pts: 28247. update pts: 28174 < new pts 28247, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28246 + pts count: 1 = new pts: 28247. update pts: 28177 < new pts 28247, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28246 + pts count: 1 = new pts: 28247. update pts: 28185 < new pts 28247, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28246 + pts count: 1 = new pts: 28247. update pts: 28194 < new pts 28247, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28246 + pts count: 1 = new pts: 28247. update pts: 28202 < new pts 28247, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28246 + pts count: 1 = new pts: 28247. update pts: 28204 < new pts 28247, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28246 + pts count: 1 = new pts: 28247. update pts: 28208 < new pts 28247, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28246 + pts count: 1 = new pts: 28247. update pts: 28220 < new pts 28247, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28246 + pts count: 1 = new pts: 28247. update pts: 28234 < new pts 28247, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28246 + pts count: 1 = new pts: 28247. update pts: 28237 < new pts 28247, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28249, pts count: 1, new pts: 28250 < update pts: 28251, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28249, pts count: 1, new pts: 28250 < update pts: 28252, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28252 + pts count: 1 = new pts: 28253. update pts: 28115 < new pts 28253, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 841133 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28252 + pts count: 1 = new pts: 28253, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28253 + pts count: 1 = new pts: 28254. update pts: 28115 < new pts 28254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28253 + pts count: 1 = new pts: 28254. update pts: 28162 < new pts 28254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28253 + pts count: 1 = new pts: 28254. update pts: 28164 < new pts 28254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28253 + pts count: 1 = new pts: 28254. update pts: 28166 < new pts 28254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28253 + pts count: 1 = new pts: 28254. update pts: 28168 < new pts 28254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28253 + pts count: 1 = new pts: 28254. update pts: 28174 < new pts 28254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28253 + pts count: 1 = new pts: 28254. update pts: 28177 < new pts 28254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28253 + pts count: 1 = new pts: 28254. update pts: 28185 < new pts 28254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28253 + pts count: 1 = new pts: 28254. update pts: 28194 < new pts 28254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28253 + pts count: 1 = new pts: 28254. update pts: 28202 < new pts 28254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28253 + pts count: 1 = new pts: 28254. update pts: 28204 < new pts 28254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28253 + pts count: 1 = new pts: 28254. update pts: 28208 < new pts 28254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28253 + pts count: 1 = new pts: 28254. update pts: 28220 < new pts 28254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28253 + pts count: 1 = new pts: 28254. update pts: 28234 < new pts 28254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28253 + pts count: 1 = new pts: 28254. update pts: 28237 < new pts 28254, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28252, pts count: 1, new pts: 28253 < update pts: 28254, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 562498 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 845085 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28254 + pts count: 1 = new pts: 28255. update pts: 28115 < new pts 28255, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28255 + pts count: 1 = new pts: 28256, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28255, pts count: 1, new pts: 28256 < update pts: 28258, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28258 + pts count: 1 = new pts: 28259. update pts: 28115 < new pts 28259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28258 + pts count: 1 = new pts: 28259. update pts: 28162 < new pts 28259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28258 + pts count: 1 = new pts: 28259. update pts: 28164 < new pts 28259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28258 + pts count: 1 = new pts: 28259. update pts: 28166 < new pts 28259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28258 + pts count: 1 = new pts: 28259. update pts: 28168 < new pts 28259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28258 + pts count: 1 = new pts: 28259. update pts: 28174 < new pts 28259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28258 + pts count: 1 = new pts: 28259. update pts: 28177 < new pts 28259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28258 + pts count: 1 = new pts: 28259. update pts: 28185 < new pts 28259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28258 + pts count: 1 = new pts: 28259. update pts: 28194 < new pts 28259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28258 + pts count: 1 = new pts: 28259. update pts: 28202 < new pts 28259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28258 + pts count: 1 = new pts: 28259. update pts: 28204 < new pts 28259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28258 + pts count: 1 = new pts: 28259. update pts: 28208 < new pts 28259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28258 + pts count: 1 = new pts: 28259. update pts: 28220 < new pts 28259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28258 + pts count: 1 = new pts: 28259. update pts: 28234 < new pts 28259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28258 + pts count: 1 = new pts: 28259. update pts: 28237 < new pts 28259, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 575674 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28258 + pts count: 1 = new pts: 28259. update pts: 28115 < new pts 28259, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 840404 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28258, pts count: 1, new pts: 28259 < update pts: 28260, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28260 + pts count: 1 = new pts: 28261. update pts: 28115 < new pts 28261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28260 + pts count: 1 = new pts: 28261. update pts: 28162 < new pts 28261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28260 + pts count: 1 = new pts: 28261. update pts: 28164 < new pts 28261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28260 + pts count: 1 = new pts: 28261. update pts: 28166 < new pts 28261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28260 + pts count: 1 = new pts: 28261. update pts: 28168 < new pts 28261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28260 + pts count: 1 = new pts: 28261. update pts: 28174 < new pts 28261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28260 + pts count: 1 = new pts: 28261. update pts: 28177 < new pts 28261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28260 + pts count: 1 = new pts: 28261. update pts: 28185 < new pts 28261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28260 + pts count: 1 = new pts: 28261. update pts: 28194 < new pts 28261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28260 + pts count: 1 = new pts: 28261. update pts: 28202 < new pts 28261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28260 + pts count: 1 = new pts: 28261. update pts: 28204 < new pts 28261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28260 + pts count: 1 = new pts: 28261. update pts: 28208 < new pts 28261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28260 + pts count: 1 = new pts: 28261. update pts: 28220 < new pts 28261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28260 + pts count: 1 = new pts: 28261. update pts: 28234 < new pts 28261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28260 + pts count: 1 = new pts: 28261. update pts: 28237 < new pts 28261, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 588783 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28260 + pts count: 1 = new pts: 28261. update pts: 28115 < new pts 28261, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 845502 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28261 + pts count: 1 = new pts: 28262. update pts: 28115 < new pts 28262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28261 + pts count: 1 = new pts: 28262. update pts: 28162 < new pts 28262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28261 + pts count: 1 = new pts: 28262. update pts: 28164 < new pts 28262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28261 + pts count: 1 = new pts: 28262. update pts: 28166 < new pts 28262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28261 + pts count: 1 = new pts: 28262. update pts: 28168 < new pts 28262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28261 + pts count: 1 = new pts: 28262. update pts: 28174 < new pts 28262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28261 + pts count: 1 = new pts: 28262. update pts: 28177 < new pts 28262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28261 + pts count: 1 = new pts: 28262. update pts: 28185 < new pts 28262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28261 + pts count: 1 = new pts: 28262. update pts: 28194 < new pts 28262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28261 + pts count: 1 = new pts: 28262. update pts: 28202 < new pts 28262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28261 + pts count: 1 = new pts: 28262. update pts: 28204 < new pts 28262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28261 + pts count: 1 = new pts: 28262. update pts: 28208 < new pts 28262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28261 + pts count: 1 = new pts: 28262. update pts: 28220 < new pts 28262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28261 + pts count: 1 = new pts: 28262. update pts: 28234 < new pts 28262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28261 + pts count: 1 = new pts: 28262. update pts: 28237 < new pts 28262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28261 + pts count: 1 = new pts: 28262, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28262, pts count: 1, new pts: 28263 < update pts: 28265, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 601224 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28263, pts count: 1, new pts: 28264 < update pts: 28266, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28266 + pts count: 1 = new pts: 28267. update pts: 28115 < new pts 28267, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28265, pts count: 1, new pts: 28266 < update pts: 28267, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 862254 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 619980 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28267, pts count: 1, new pts: 28268 < update pts: 28270, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28268, pts count: 1, new pts: 28269 < update pts: 28271, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28115 < new pts 28272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28162 < new pts 28272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28164 < new pts 28272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28166 < new pts 28272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28168 < new pts 28272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28174 < new pts 28272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28177 < new pts 28272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28185 < new pts 28272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28194 < new pts 28272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28202 < new pts 28272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28204 < new pts 28272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28208 < new pts 28272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28220 < new pts 28272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28234 < new pts 28272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28237 < new pts 28272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28262 < new pts 28272, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28271 + pts count: 1 = new pts: 28272. update pts: 28115 < new pts 28272, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28271 + pts count: 1 = new pts: 28272, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 638940 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28272, pts count: 1, new pts: 28273 < update pts: 28274, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 862604 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28274 + pts count: 1 = new pts: 28275. update pts: 28115 < new pts 28275, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28274 + pts count: 1 = new pts: 28275. update pts: 28273 < new pts 28275, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28272 + pts count: 1 = new pts: 28273. update pts: 28115 < new pts 28273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28272 + pts count: 1 = new pts: 28273. update pts: 28162 < new pts 28273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28272 + pts count: 1 = new pts: 28273. update pts: 28164 < new pts 28273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28272 + pts count: 1 = new pts: 28273. update pts: 28166 < new pts 28273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28272 + pts count: 1 = new pts: 28273. update pts: 28168 < new pts 28273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28272 + pts count: 1 = new pts: 28273. update pts: 28174 < new pts 28273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28272 + pts count: 1 = new pts: 28273. update pts: 28177 < new pts 28273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28272 + pts count: 1 = new pts: 28273. update pts: 28185 < new pts 28273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28272 + pts count: 1 = new pts: 28273. update pts: 28194 < new pts 28273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28272 + pts count: 1 = new pts: 28273. update pts: 28202 < new pts 28273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28272 + pts count: 1 = new pts: 28273. update pts: 28204 < new pts 28273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28272 + pts count: 1 = new pts: 28273. update pts: 28208 < new pts 28273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28272 + pts count: 1 = new pts: 28273. update pts: 28220 < new pts 28273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28272 + pts count: 1 = new pts: 28273. update pts: 28234 < new pts 28273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28272 + pts count: 1 = new pts: 28273. update pts: 28237 < new pts 28273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28272 + pts count: 1 = new pts: 28273. update pts: 28262 < new pts 28273, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 665057 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28275 + pts count: 1 = new pts: 28276, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28276 + pts count: 1 = new pts: 28277. update pts: 28115 < new pts 28277, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28276 + pts count: 1 = new pts: 28277. update pts: 28273 < new pts 28277, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 867136 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 671683 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28275 + pts count: 1 = new pts: 28276. update pts: 28115 < new pts 28276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28275 + pts count: 1 = new pts: 28276. update pts: 28162 < new pts 28276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28275 + pts count: 1 = new pts: 28276. update pts: 28164 < new pts 28276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28275 + pts count: 1 = new pts: 28276. update pts: 28166 < new pts 28276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28275 + pts count: 1 = new pts: 28276. update pts: 28168 < new pts 28276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28275 + pts count: 1 = new pts: 28276. update pts: 28174 < new pts 28276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28275 + pts count: 1 = new pts: 28276. update pts: 28177 < new pts 28276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28275 + pts count: 1 = new pts: 28276. update pts: 28185 < new pts 28276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28275 + pts count: 1 = new pts: 28276. update pts: 28194 < new pts 28276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28275 + pts count: 1 = new pts: 28276. update pts: 28202 < new pts 28276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28275 + pts count: 1 = new pts: 28276. update pts: 28204 < new pts 28276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28275 + pts count: 1 = new pts: 28276. update pts: 28208 < new pts 28276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28275 + pts count: 1 = new pts: 28276. update pts: 28220 < new pts 28276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28275 + pts count: 1 = new pts: 28276. update pts: 28234 < new pts 28276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28275 + pts count: 1 = new pts: 28276. update pts: 28237 < new pts 28276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28275 + pts count: 1 = new pts: 28276. update pts: 28262 < new pts 28276, channel id: -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28276 + pts count: 1 = new pts: 28277. update pts: 28115 < new pts 28277, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28276 + pts count: 1 = new pts: 28277. update pts: 28273 < new pts 28277, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28276 + pts count: 1 = new pts: 28277, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Pts hole. current pts: 28275, pts count: 1, new pts: 28276 < update pts: 28279, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 690059 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 873336 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28281, pts count: 1, new pts: 28282 < update pts: 28284, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28284 + pts count: 1 = new pts: 28285. update pts: 28115 < new pts 28285, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28284 + pts count: 1 = new pts: 28285. update pts: 28273 < new pts 28285, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28284 + pts count: 1 = new pts: 28285. update pts: 28277 < new pts 28285, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28284 + pts count: 1 = new pts: 28285. update pts: 28282 < new pts 28285, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28281 + pts count: 1 = new pts: 28282. update pts: 28115 < new pts 28282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28281 + pts count: 1 = new pts: 28282. update pts: 28162 < new pts 28282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28281 + pts count: 1 = new pts: 28282. update pts: 28164 < new pts 28282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28281 + pts count: 1 = new pts: 28282. update pts: 28166 < new pts 28282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28281 + pts count: 1 = new pts: 28282. update pts: 28168 < new pts 28282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28281 + pts count: 1 = new pts: 28282. update pts: 28174 < new pts 28282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28281 + pts count: 1 = new pts: 28282. update pts: 28177 < new pts 28282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28281 + pts count: 1 = new pts: 28282. update pts: 28185 < new pts 28282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28281 + pts count: 1 = new pts: 28282. update pts: 28194 < new pts 28282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28281 + pts count: 1 = new pts: 28282. update pts: 28202 < new pts 28282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28281 + pts count: 1 = new pts: 28282. update pts: 28204 < new pts 28282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28281 + pts count: 1 = new pts: 28282. update pts: 28208 < new pts 28282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28281 + pts count: 1 = new pts: 28282. update pts: 28220 < new pts 28282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28281 + pts count: 1 = new pts: 28282. update pts: 28234 < new pts 28282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28281 + pts count: 1 = new pts: 28282. update pts: 28237 < new pts 28282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28281 + pts count: 1 = new pts: 28282. update pts: 28262 < new pts 28282, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28281, pts count: 1, new pts: 28282 < update pts: 28285, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28285 + pts count: 1 = new pts: 28286, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 879157 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 712235 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28286, pts count: 1, new pts: 28287 < update pts: 28288, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28286 + pts count: 1 = new pts: 28287. update pts: 28115 < new pts 28287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28286 + pts count: 1 = new pts: 28287. update pts: 28162 < new pts 28287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28286 + pts count: 1 = new pts: 28287. update pts: 28164 < new pts 28287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28286 + pts count: 1 = new pts: 28287. update pts: 28166 < new pts 28287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28286 + pts count: 1 = new pts: 28287. update pts: 28168 < new pts 28287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28286 + pts count: 1 = new pts: 28287. update pts: 28174 < new pts 28287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28286 + pts count: 1 = new pts: 28287. update pts: 28177 < new pts 28287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28286 + pts count: 1 = new pts: 28287. update pts: 28185 < new pts 28287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28286 + pts count: 1 = new pts: 28287. update pts: 28194 < new pts 28287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28286 + pts count: 1 = new pts: 28287. update pts: 28202 < new pts 28287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28286 + pts count: 1 = new pts: 28287. update pts: 28204 < new pts 28287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28286 + pts count: 1 = new pts: 28287. update pts: 28208 < new pts 28287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28286 + pts count: 1 = new pts: 28287. update pts: 28220 < new pts 28287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28286 + pts count: 1 = new pts: 28287. update pts: 28234 < new pts 28287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28286 + pts count: 1 = new pts: 28287. update pts: 28237 < new pts 28287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28286 + pts count: 1 = new pts: 28287. update pts: 28262 < new pts 28287, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28288 + pts count: 1 = new pts: 28289. update pts: 28115 < new pts 28289, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28288 + pts count: 1 = new pts: 28289. update pts: 28273 < new pts 28289, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28288 + pts count: 1 = new pts: 28289. update pts: 28277 < new pts 28289, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28288 + pts count: 1 = new pts: 28289. update pts: 28282 < new pts 28289, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28288 + pts count: 1 = new pts: 28289. update pts: 28287 < new pts 28289, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 729312 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -Wrote 885920 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28115 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28273 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28277 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28282 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28287 < new pts 28290, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28115 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28162 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28164 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28166 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28168 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28174 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28177 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28185 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28194 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28202 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28204 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28208 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28220 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28234 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28237 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28262 < new pts 28290, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 735201 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 884171 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28115 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28273 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28277 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28282 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28287 < new pts 28290, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28115 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28162 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28164 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28166 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28168 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28174 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28177 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28185 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28194 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28202 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28204 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28208 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28220 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28234 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28237 < new pts 28290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28289 + pts count: 1 = new pts: 28290. update pts: 28262 < new pts 28290, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28289 + pts count: 1 = new pts: 28290, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 740682 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28289, pts count: 1, new pts: 28290 < update pts: 28292, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28289, pts count: 1, new pts: 28290 < update pts: 28293, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -Wrote 882428 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28293 + pts count: 1 = new pts: 28294. update pts: 28115 < new pts 28294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28293 + pts count: 1 = new pts: 28294. update pts: 28273 < new pts 28294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28293 + pts count: 1 = new pts: 28294. update pts: 28277 < new pts 28294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28293 + pts count: 1 = new pts: 28294. update pts: 28282 < new pts 28294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28293 + pts count: 1 = new pts: 28294. update pts: 28287 < new pts 28294, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28290, pts count: 1, new pts: 28291 < update pts: 28295, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28115 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28162 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28164 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28166 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28168 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28174 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28177 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28185 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28194 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28202 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28204 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28208 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28220 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28234 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28237 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28262 < new pts 28296, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 772478 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 884660 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28115 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28273 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28277 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28282 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28287 < new pts 28296, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28115 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28162 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28164 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28166 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28168 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28174 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28177 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28185 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28194 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28202 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28204 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28208 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28220 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28234 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28237 < new pts 28296, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28295 + pts count: 1 = new pts: 28296. update pts: 28262 < new pts 28296, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 784251 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 895209 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28115 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28273 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28277 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28282 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28287 < new pts 28302, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28115 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28162 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28164 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28166 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28168 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28174 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28177 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28185 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28194 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28202 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28204 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28208 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28220 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28234 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28237 < new pts 28302, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28301 + pts count: 1 = new pts: 28302. update pts: 28262 < new pts 28302, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 788523 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 891659 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28301, pts count: 1, new pts: 28302 < update pts: 28303, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28301, pts count: 1, new pts: 28302 < update pts: 28304, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28115 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28273 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28277 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28282 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28287 < new pts 28305, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28115 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28162 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28164 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28166 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28168 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28174 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28177 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28185 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28194 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28202 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28204 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28208 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28220 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28234 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28237 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28262 < new pts 28305, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 803376 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 898205 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28115 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28273 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28277 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28282 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28287 < new pts 28305, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28115 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28162 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28164 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28166 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28168 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28174 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28177 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28185 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28194 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28202 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28204 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28208 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28220 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28234 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28237 < new pts 28305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28304 + pts count: 1 = new pts: 28305. update pts: 28262 < new pts 28305, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 813283 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28305 + pts count: 1 = new pts: 28306. update pts: 28115 < new pts 28306, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28305 + pts count: 1 = new pts: 28306. update pts: 28273 < new pts 28306, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28305 + pts count: 1 = new pts: 28306. update pts: 28277 < new pts 28306, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28305 + pts count: 1 = new pts: 28306. update pts: 28282 < new pts 28306, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28305 + pts count: 1 = new pts: 28306. update pts: 28287 < new pts 28306, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28305 + pts count: 1 = new pts: 28306, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 902592 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28306 + pts count: 1 = new pts: 28307. update pts: 28115 < new pts 28307, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28306 + pts count: 1 = new pts: 28307. update pts: 28162 < new pts 28307, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28306 + pts count: 1 = new pts: 28307. update pts: 28164 < new pts 28307, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28306 + pts count: 1 = new pts: 28307. update pts: 28166 < new pts 28307, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28306 + pts count: 1 = new pts: 28307. update pts: 28168 < new pts 28307, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28306 + pts count: 1 = new pts: 28307. update pts: 28174 < new pts 28307, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28306 + pts count: 1 = new pts: 28307. update pts: 28177 < new pts 28307, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28306 + pts count: 1 = new pts: 28307. update pts: 28185 < new pts 28307, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28306 + pts count: 1 = new pts: 28307. update pts: 28194 < new pts 28307, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28306 + pts count: 1 = new pts: 28307. update pts: 28202 < new pts 28307, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28306 + pts count: 1 = new pts: 28307. update pts: 28204 < new pts 28307, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28306 + pts count: 1 = new pts: 28307. update pts: 28208 < new pts 28307, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28306 + pts count: 1 = new pts: 28307. update pts: 28220 < new pts 28307, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28306 + pts count: 1 = new pts: 28307. update pts: 28234 < new pts 28307, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28306 + pts count: 1 = new pts: 28307. update pts: 28237 < new pts 28307, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28306 + pts count: 1 = new pts: 28307. update pts: 28262 < new pts 28307, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 829219 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28115 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28273 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28277 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28282 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28287 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28306 < new pts 28309, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 904964 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28115 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28162 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28164 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28166 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28168 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28174 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28177 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28185 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28194 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28202 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28204 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28208 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28220 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28234 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28237 < new pts 28309, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28308 + pts count: 1 = new pts: 28309. update pts: 28262 < new pts 28309, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 836148 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28309 + pts count: 1 = new pts: 28310, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28115 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28273 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28277 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28282 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28287 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28306 < new pts 28311, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 904996 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 846563 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28115 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28162 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28164 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28166 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28168 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28174 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28177 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28185 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28194 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28202 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28204 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28208 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28220 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28234 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28237 < new pts 28311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28310 + pts count: 1 = new pts: 28311. update pts: 28262 < new pts 28311, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28311 + pts count: 1 = new pts: 28312. update pts: 28115 < new pts 28312, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28311 + pts count: 1 = new pts: 28312. update pts: 28273 < new pts 28312, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28311 + pts count: 1 = new pts: 28312. update pts: 28277 < new pts 28312, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28311 + pts count: 1 = new pts: 28312. update pts: 28282 < new pts 28312, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28311 + pts count: 1 = new pts: 28312. update pts: 28287 < new pts 28312, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28311 + pts count: 1 = new pts: 28312. update pts: 28306 < new pts 28312, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 853491 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 912418 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28312 + pts count: 1 = new pts: 28313, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28115 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28162 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28164 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28166 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28168 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28174 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28177 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28185 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28194 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28202 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28204 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28208 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28220 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28234 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28237 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28262 < new pts 28314, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28312 + pts count: 1 = new pts: 28313. update pts: 28115 < new pts 28313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28312 + pts count: 1 = new pts: 28313. update pts: 28273 < new pts 28313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28312 + pts count: 1 = new pts: 28313. update pts: 28277 < new pts 28313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28312 + pts count: 1 = new pts: 28313. update pts: 28282 < new pts 28313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28312 + pts count: 1 = new pts: 28313. update pts: 28287 < new pts 28313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28312 + pts count: 1 = new pts: 28313. update pts: 28306 < new pts 28313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 860476 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 913111 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28313 + pts count: 1 = new pts: 28314, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28314 + pts count: 1 = new pts: 28315. update pts: 28115 < new pts 28315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28314 + pts count: 1 = new pts: 28315. update pts: 28273 < new pts 28315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28314 + pts count: 1 = new pts: 28315. update pts: 28277 < new pts 28315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28314 + pts count: 1 = new pts: 28315. update pts: 28282 < new pts 28315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28314 + pts count: 1 = new pts: 28315. update pts: 28287 < new pts 28315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28314 + pts count: 1 = new pts: 28315. update pts: 28306 < new pts 28315, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28115 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28162 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28164 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28166 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28168 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28174 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28177 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28185 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28194 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28202 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28204 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28208 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28220 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28234 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28237 < new pts 28314, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28313 + pts count: 1 = new pts: 28314. update pts: 28262 < new pts 28314, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 870404 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28315 + pts count: 1 = new pts: 28316, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28316 + pts count: 1 = new pts: 28317. update pts: 28115 < new pts 28317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28316 + pts count: 1 = new pts: 28317. update pts: 28273 < new pts 28317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28316 + pts count: 1 = new pts: 28317. update pts: 28277 < new pts 28317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28316 + pts count: 1 = new pts: 28317. update pts: 28282 < new pts 28317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28316 + pts count: 1 = new pts: 28317. update pts: 28287 < new pts 28317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28316 + pts count: 1 = new pts: 28317. update pts: 28306 < new pts 28317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28316 + pts count: 1 = new pts: 28317. update pts: 28315 < new pts 28317, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 919483 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28315 + pts count: 1 = new pts: 28316. update pts: 28115 < new pts 28316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28315 + pts count: 1 = new pts: 28316. update pts: 28162 < new pts 28316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28315 + pts count: 1 = new pts: 28316. update pts: 28164 < new pts 28316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28315 + pts count: 1 = new pts: 28316. update pts: 28166 < new pts 28316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28315 + pts count: 1 = new pts: 28316. update pts: 28168 < new pts 28316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28315 + pts count: 1 = new pts: 28316. update pts: 28174 < new pts 28316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28315 + pts count: 1 = new pts: 28316. update pts: 28177 < new pts 28316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28315 + pts count: 1 = new pts: 28316. update pts: 28185 < new pts 28316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28315 + pts count: 1 = new pts: 28316. update pts: 28194 < new pts 28316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28315 + pts count: 1 = new pts: 28316. update pts: 28202 < new pts 28316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28315 + pts count: 1 = new pts: 28316. update pts: 28204 < new pts 28316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28315 + pts count: 1 = new pts: 28316. update pts: 28208 < new pts 28316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28315 + pts count: 1 = new pts: 28316. update pts: 28220 < new pts 28316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28315 + pts count: 1 = new pts: 28316. update pts: 28234 < new pts 28316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28315 + pts count: 1 = new pts: 28316. update pts: 28237 < new pts 28316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28315 + pts count: 1 = new pts: 28316. update pts: 28262 < new pts 28316, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 878245 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28317 + pts count: 1 = new pts: 28318. update pts: 28115 < new pts 28318, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28317 + pts count: 1 = new pts: 28318. update pts: 28273 < new pts 28318, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28317 + pts count: 1 = new pts: 28318. update pts: 28277 < new pts 28318, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28317 + pts count: 1 = new pts: 28318. update pts: 28282 < new pts 28318, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28317 + pts count: 1 = new pts: 28318. update pts: 28287 < new pts 28318, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28317 + pts count: 1 = new pts: 28318. update pts: 28306 < new pts 28318, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28317 + pts count: 1 = new pts: 28318. update pts: 28315 < new pts 28318, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 924832 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 877946 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28318 + pts count: 1 = new pts: 28319, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28319 + pts count: 1 = new pts: 28320. update pts: 28115 < new pts 28320, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28319 + pts count: 1 = new pts: 28320. update pts: 28162 < new pts 28320, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28319 + pts count: 1 = new pts: 28320. update pts: 28164 < new pts 28320, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28319 + pts count: 1 = new pts: 28320. update pts: 28166 < new pts 28320, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28319 + pts count: 1 = new pts: 28320. update pts: 28168 < new pts 28320, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28319 + pts count: 1 = new pts: 28320. update pts: 28174 < new pts 28320, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28319 + pts count: 1 = new pts: 28320. update pts: 28177 < new pts 28320, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28319 + pts count: 1 = new pts: 28320. update pts: 28185 < new pts 28320, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28319 + pts count: 1 = new pts: 28320. update pts: 28194 < new pts 28320, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28319 + pts count: 1 = new pts: 28320. update pts: 28202 < new pts 28320, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28319 + pts count: 1 = new pts: 28320. update pts: 28204 < new pts 28320, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28319 + pts count: 1 = new pts: 28320. update pts: 28208 < new pts 28320, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28319 + pts count: 1 = new pts: 28320. update pts: 28220 < new pts 28320, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28319 + pts count: 1 = new pts: 28320. update pts: 28234 < new pts 28320, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28319 + pts count: 1 = new pts: 28320. update pts: 28237 < new pts 28320, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28319 + pts count: 1 = new pts: 28320. update pts: 28262 < new pts 28320, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28318 + pts count: 1 = new pts: 28319. update pts: 28115 < new pts 28319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28318 + pts count: 1 = new pts: 28319. update pts: 28273 < new pts 28319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28318 + pts count: 1 = new pts: 28319. update pts: 28277 < new pts 28319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28318 + pts count: 1 = new pts: 28319. update pts: 28282 < new pts 28319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28318 + pts count: 1 = new pts: 28319. update pts: 28287 < new pts 28319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28318 + pts count: 1 = new pts: 28319. update pts: 28306 < new pts 28319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28318 + pts count: 1 = new pts: 28319. update pts: 28315 < new pts 28319, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 928627 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -Wrote 877459 bytes -AuthKeyHandler, danogentili: Calling 252591... -AuthKeyHandler, danogentili: Generating g_a... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28115 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28162 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28164 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28166 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28168 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28174 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28177 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28185 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28194 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28202 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28204 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28208 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28220 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28234 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28237 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28262 < new pts 28321, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28115 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28273 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28277 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28282 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28287 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28306 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28315 < new pts 28321, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 878166 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 924635 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28115 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28273 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28277 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28282 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28287 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28306 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28315 < new pts 28321, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28115 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28162 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28164 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28166 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28168 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28174 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28177 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28185 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28194 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28202 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28204 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28208 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28220 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28234 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28237 < new pts 28321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28320 + pts count: 1 = new pts: 28321. update pts: 28262 < new pts 28321, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28320 + pts count: 1 = new pts: 28321, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 880223 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 933655 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28326 + pts count: 1 = new pts: 28327, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28325 + pts count: 1 = new pts: 28326. update pts: 28115 < new pts 28326, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28325 + pts count: 1 = new pts: 28326. update pts: 28273 < new pts 28326, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28325 + pts count: 1 = new pts: 28326. update pts: 28277 < new pts 28326, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28325 + pts count: 1 = new pts: 28326. update pts: 28282 < new pts 28326, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28325 + pts count: 1 = new pts: 28326. update pts: 28287 < new pts 28326, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28325 + pts count: 1 = new pts: 28326. update pts: 28306 < new pts 28326, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28325 + pts count: 1 = new pts: 28326. update pts: 28315 < new pts 28326, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28325 + pts count: 1 = new pts: 28326, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28327 + pts count: 1 = new pts: 28328, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28328 + pts count: 1 = new pts: 28329. update pts: 28115 < new pts 28329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28328 + pts count: 1 = new pts: 28329. update pts: 28162 < new pts 28329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28328 + pts count: 1 = new pts: 28329. update pts: 28164 < new pts 28329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28328 + pts count: 1 = new pts: 28329. update pts: 28166 < new pts 28329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28328 + pts count: 1 = new pts: 28329. update pts: 28168 < new pts 28329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28328 + pts count: 1 = new pts: 28329. update pts: 28174 < new pts 28329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28328 + pts count: 1 = new pts: 28329. update pts: 28177 < new pts 28329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28328 + pts count: 1 = new pts: 28329. update pts: 28185 < new pts 28329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28328 + pts count: 1 = new pts: 28329. update pts: 28194 < new pts 28329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28328 + pts count: 1 = new pts: 28329. update pts: 28202 < new pts 28329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28328 + pts count: 1 = new pts: 28329. update pts: 28204 < new pts 28329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28328 + pts count: 1 = new pts: 28329. update pts: 28208 < new pts 28329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28328 + pts count: 1 = new pts: 28329. update pts: 28220 < new pts 28329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28328 + pts count: 1 = new pts: 28329. update pts: 28234 < new pts 28329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28328 + pts count: 1 = new pts: 28329. update pts: 28237 < new pts 28329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28328 + pts count: 1 = new pts: 28329. update pts: 28262 < new pts 28329, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 888254 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 946923 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28332 + pts count: 1 = new pts: 28333, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28333 + pts count: 1 = new pts: 28334. update pts: 28115 < new pts 28334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28333 + pts count: 1 = new pts: 28334. update pts: 28273 < new pts 28334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28333 + pts count: 1 = new pts: 28334. update pts: 28277 < new pts 28334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28333 + pts count: 1 = new pts: 28334. update pts: 28282 < new pts 28334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28333 + pts count: 1 = new pts: 28334. update pts: 28287 < new pts 28334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28333 + pts count: 1 = new pts: 28334. update pts: 28306 < new pts 28334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28333 + pts count: 1 = new pts: 28334. update pts: 28315 < new pts 28334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28333 + pts count: 1 = new pts: 28334. update pts: 28326 < new pts 28334, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28332, pts count: 1, new pts: 28333 < update pts: 28335, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28115 < new pts 28339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28162 < new pts 28339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28164 < new pts 28339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28166 < new pts 28339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28168 < new pts 28339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28174 < new pts 28339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28177 < new pts 28339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28185 < new pts 28339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28194 < new pts 28339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28202 < new pts 28339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28204 < new pts 28339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28208 < new pts 28339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28220 < new pts 28339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28234 < new pts 28339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28237 < new pts 28339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28262 < new pts 28339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28338 + pts count: 1 = new pts: 28339. update pts: 28334 < new pts 28339, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 890453 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28338, pts count: 1, new pts: 28339 < update pts: 28342, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28339, pts count: 1, new pts: 28340 < update pts: 28344, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28115 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28273 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28277 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28282 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28287 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28306 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28315 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28326 < new pts 28345, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28345 + pts count: 1 = new pts: 28346, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 894712 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 949549 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28346 + pts count: 1 = new pts: 28347. update pts: 28115 < new pts 28347, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28346 + pts count: 1 = new pts: 28347. update pts: 28273 < new pts 28347, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28346 + pts count: 1 = new pts: 28347. update pts: 28277 < new pts 28347, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28346 + pts count: 1 = new pts: 28347. update pts: 28282 < new pts 28347, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28346 + pts count: 1 = new pts: 28347. update pts: 28287 < new pts 28347, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28346 + pts count: 1 = new pts: 28347. update pts: 28306 < new pts 28347, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28346 + pts count: 1 = new pts: 28347. update pts: 28315 < new pts 28347, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28346 + pts count: 1 = new pts: 28347. update pts: 28326 < new pts 28347, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28115 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28162 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28164 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28166 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28168 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28174 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28177 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28185 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28194 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28202 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28204 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28208 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28220 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28234 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28237 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28262 < new pts 28345, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28344 + pts count: 1 = new pts: 28345. update pts: 28334 < new pts 28345, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28344, pts count: 1, new pts: 28345 < update pts: 28350, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28350 + pts count: 1 = new pts: 28351, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 892820 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 955409 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28351 + pts count: 1 = new pts: 28352, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28352 + pts count: 1 = new pts: 28353, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28115 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28273 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28277 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28282 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28287 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28306 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28315 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28326 < new pts 28354, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28115 < new pts 28352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28162 < new pts 28352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28164 < new pts 28352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28166 < new pts 28352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28168 < new pts 28352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28174 < new pts 28352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28177 < new pts 28352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28185 < new pts 28352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28194 < new pts 28352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28202 < new pts 28352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28204 < new pts 28352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28208 < new pts 28352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28220 < new pts 28352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28234 < new pts 28352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28237 < new pts 28352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28262 < new pts 28352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28351 + pts count: 1 = new pts: 28352. update pts: 28334 < new pts 28352, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 895768 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28353 + pts count: 1 = new pts: 28354, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28354 + pts count: 1 = new pts: 28355. update pts: 28115 < new pts 28355, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28354 + pts count: 1 = new pts: 28355. update pts: 28273 < new pts 28355, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28354 + pts count: 1 = new pts: 28355. update pts: 28277 < new pts 28355, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28354 + pts count: 1 = new pts: 28355. update pts: 28282 < new pts 28355, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28354 + pts count: 1 = new pts: 28355. update pts: 28287 < new pts 28355, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28354 + pts count: 1 = new pts: 28355. update pts: 28306 < new pts 28355, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28354 + pts count: 1 = new pts: 28355. update pts: 28315 < new pts 28355, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28354 + pts count: 1 = new pts: 28355. update pts: 28326 < new pts 28355, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 955834 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28115 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28162 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28164 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28166 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28168 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28174 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28177 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28185 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28194 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28202 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28204 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28208 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28220 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28234 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28237 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28262 < new pts 28354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28353 + pts count: 1 = new pts: 28354. update pts: 28334 < new pts 28354, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 899807 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28355 + pts count: 1 = new pts: 28356. update pts: 28115 < new pts 28356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28355 + pts count: 1 = new pts: 28356. update pts: 28273 < new pts 28356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28355 + pts count: 1 = new pts: 28356. update pts: 28277 < new pts 28356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28355 + pts count: 1 = new pts: 28356. update pts: 28282 < new pts 28356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28355 + pts count: 1 = new pts: 28356. update pts: 28287 < new pts 28356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28355 + pts count: 1 = new pts: 28356. update pts: 28306 < new pts 28356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28355 + pts count: 1 = new pts: 28356. update pts: 28315 < new pts 28356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28355 + pts count: 1 = new pts: 28356. update pts: 28326 < new pts 28356, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 958123 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28355, pts count: 1, new pts: 28356 < update pts: 28357, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -Wrote 900118 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28115 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28162 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28164 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28166 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28168 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28174 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28177 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28185 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28194 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28202 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28204 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28208 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28220 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28234 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28237 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28262 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28334 < new pts 28358, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28115 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28273 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28277 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28282 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28287 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28306 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28315 < new pts 28358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28357 + pts count: 1 = new pts: 28358. update pts: 28326 < new pts 28358, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 959837 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 899160 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28115 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28162 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28164 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28166 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28168 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28174 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28177 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28185 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28194 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28202 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28204 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28208 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28220 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28234 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28237 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28262 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28334 < new pts 28359, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28115 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28273 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28277 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28282 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28287 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28306 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28315 < new pts 28359, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28358 + pts count: 1 = new pts: 28359. update pts: 28326 < new pts 28359, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 902358 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 961819 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28360 + pts count: 1 = new pts: 28361, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28360, pts count: 1, new pts: 28361 < update pts: 28362, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28361 + pts count: 1 = new pts: 28362. update pts: 28115 < new pts 28362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28361 + pts count: 1 = new pts: 28362. update pts: 28273 < new pts 28362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28361 + pts count: 1 = new pts: 28362. update pts: 28277 < new pts 28362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28361 + pts count: 1 = new pts: 28362. update pts: 28282 < new pts 28362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28361 + pts count: 1 = new pts: 28362. update pts: 28287 < new pts 28362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28361 + pts count: 1 = new pts: 28362. update pts: 28306 < new pts 28362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28361 + pts count: 1 = new pts: 28362. update pts: 28315 < new pts 28362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28361 + pts count: 1 = new pts: 28362. update pts: 28326 < new pts 28362, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28115 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28162 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28164 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28166 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28168 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28174 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28177 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28185 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28194 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28202 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28204 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28208 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28220 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28234 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28237 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28262 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28334 < new pts 28363, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 900863 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 968740 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28362 + pts count: 1 = new pts: 28363, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28363 + pts count: 1 = new pts: 28364. update pts: 28115 < new pts 28364, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28363 + pts count: 1 = new pts: 28364. update pts: 28273 < new pts 28364, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28363 + pts count: 1 = new pts: 28364. update pts: 28277 < new pts 28364, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28363 + pts count: 1 = new pts: 28364. update pts: 28282 < new pts 28364, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28363 + pts count: 1 = new pts: 28364. update pts: 28287 < new pts 28364, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28363 + pts count: 1 = new pts: 28364. update pts: 28306 < new pts 28364, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28363 + pts count: 1 = new pts: 28364. update pts: 28315 < new pts 28364, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28363 + pts count: 1 = new pts: 28364. update pts: 28326 < new pts 28364, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28115 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28162 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28164 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28166 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28168 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28174 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28177 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28185 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28194 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28202 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28204 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28208 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28220 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28234 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28237 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28262 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28362 + pts count: 1 = new pts: 28363. update pts: 28334 < new pts 28363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28362, pts count: 1, new pts: 28363 < update pts: 28364, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 901476 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28115 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28273 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28277 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28282 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28287 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28306 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28315 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28326 < new pts 28365, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 975980 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28115 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28162 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28164 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28166 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28168 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28174 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28177 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28185 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28194 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28202 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28204 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28208 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28220 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28234 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28237 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28262 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28334 < new pts 28365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28364 + pts count: 1 = new pts: 28365. update pts: 28364 < new pts 28365, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 904690 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28365 + pts count: 1 = new pts: 28366. update pts: 28115 < new pts 28366, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28365 + pts count: 1 = new pts: 28366. update pts: 28273 < new pts 28366, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28365 + pts count: 1 = new pts: 28366. update pts: 28277 < new pts 28366, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28365 + pts count: 1 = new pts: 28366. update pts: 28282 < new pts 28366, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28365 + pts count: 1 = new pts: 28366. update pts: 28287 < new pts 28366, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28365 + pts count: 1 = new pts: 28366. update pts: 28306 < new pts 28366, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28365 + pts count: 1 = new pts: 28366. update pts: 28315 < new pts 28366, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28365 + pts count: 1 = new pts: 28366. update pts: 28326 < new pts 28366, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 975581 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 912469 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28115 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28162 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28164 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28166 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28168 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28174 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28177 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28185 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28194 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28202 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28204 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28208 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28220 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28234 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28237 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28262 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28334 < new pts 28367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28366 + pts count: 1 = new pts: 28367. update pts: 28364 < new pts 28367, channel id: -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28367 + pts count: 1 = new pts: 28368. update pts: 28115 < new pts 28368, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28367 + pts count: 1 = new pts: 28368. update pts: 28273 < new pts 28368, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28367 + pts count: 1 = new pts: 28368. update pts: 28277 < new pts 28368, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28367 + pts count: 1 = new pts: 28368. update pts: 28282 < new pts 28368, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28367 + pts count: 1 = new pts: 28368. update pts: 28287 < new pts 28368, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28367 + pts count: 1 = new pts: 28368. update pts: 28306 < new pts 28368, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28367 + pts count: 1 = new pts: 28368. update pts: 28315 < new pts 28368, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28367 + pts count: 1 = new pts: 28368. update pts: 28326 < new pts 28368, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 978892 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 914604 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28369 + pts count: 1 = new pts: 28370, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28370 + pts count: 1 = new pts: 28371. update pts: 28115 < new pts 28371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28370 + pts count: 1 = new pts: 28371. update pts: 28273 < new pts 28371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28370 + pts count: 1 = new pts: 28371. update pts: 28277 < new pts 28371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28370 + pts count: 1 = new pts: 28371. update pts: 28282 < new pts 28371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28370 + pts count: 1 = new pts: 28371. update pts: 28287 < new pts 28371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28370 + pts count: 1 = new pts: 28371. update pts: 28306 < new pts 28371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28370 + pts count: 1 = new pts: 28371. update pts: 28315 < new pts 28371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28370 + pts count: 1 = new pts: 28371. update pts: 28326 < new pts 28371, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28115 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28162 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28164 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28166 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28168 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28174 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28177 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28185 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28194 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28202 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28204 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28208 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28220 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28234 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28237 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28262 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28334 < new pts 28370, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28369 + pts count: 1 = new pts: 28370. update pts: 28364 < new pts 28370, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 912815 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 978906 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28115 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28273 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28277 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28282 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28287 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28306 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28315 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28326 < new pts 28372, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28115 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28162 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28164 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28166 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28168 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28174 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28177 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28185 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28194 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28202 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28204 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28208 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28220 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28234 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28237 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28262 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28334 < new pts 28372, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28371 + pts count: 1 = new pts: 28372. update pts: 28364 < new pts 28372, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 917578 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 982333 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28115 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28273 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28277 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28282 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28287 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28306 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28315 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28326 < new pts 28374, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28115 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28162 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28164 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28166 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28168 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28174 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28177 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28185 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28194 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28202 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28204 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28208 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28220 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28234 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28237 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28262 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28334 < new pts 28374, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28373 + pts count: 1 = new pts: 28374. update pts: 28364 < new pts 28374, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 924332 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28115 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28273 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28277 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28282 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28287 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28306 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28315 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28326 < new pts 28376, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 984022 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28115 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28162 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28164 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28166 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28168 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28174 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28177 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28185 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28194 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28202 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28204 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28208 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28220 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28234 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28237 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28262 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28334 < new pts 28376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28375 + pts count: 1 = new pts: 28376. update pts: 28364 < new pts 28376, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 921268 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28376 + pts count: 1 = new pts: 28377. update pts: 28115 < new pts 28377, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28376 + pts count: 1 = new pts: 28377. update pts: 28273 < new pts 28377, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28376 + pts count: 1 = new pts: 28377. update pts: 28277 < new pts 28377, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28376 + pts count: 1 = new pts: 28377. update pts: 28282 < new pts 28377, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28376 + pts count: 1 = new pts: 28377. update pts: 28287 < new pts 28377, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28376 + pts count: 1 = new pts: 28377. update pts: 28306 < new pts 28377, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28376 + pts count: 1 = new pts: 28377. update pts: 28315 < new pts 28377, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28376 + pts count: 1 = new pts: 28377. update pts: 28326 < new pts 28377, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28376 + pts count: 1 = new pts: 28377. update pts: 28376 < new pts 28377, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 985666 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28377 + pts count: 1 = new pts: 28378, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28115 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28162 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28164 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28166 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28168 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28174 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28177 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28185 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28194 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28202 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28204 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28208 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28220 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28234 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28237 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28262 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28334 < new pts 28379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28378 + pts count: 1 = new pts: 28379. update pts: 28364 < new pts 28379, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 923087 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28377 + pts count: 1 = new pts: 28378. update pts: 28115 < new pts 28378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28377 + pts count: 1 = new pts: 28378. update pts: 28273 < new pts 28378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28377 + pts count: 1 = new pts: 28378. update pts: 28277 < new pts 28378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28377 + pts count: 1 = new pts: 28378. update pts: 28282 < new pts 28378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28377 + pts count: 1 = new pts: 28378. update pts: 28287 < new pts 28378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28377 + pts count: 1 = new pts: 28378. update pts: 28306 < new pts 28378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28377 + pts count: 1 = new pts: 28378. update pts: 28315 < new pts 28378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28377 + pts count: 1 = new pts: 28378. update pts: 28326 < new pts 28378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28377 + pts count: 1 = new pts: 28378. update pts: 28376 < new pts 28378, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 991398 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 927463 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28115 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28162 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28164 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28166 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28168 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28174 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28177 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28185 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28194 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28202 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28204 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28208 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28220 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28234 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28237 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28262 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28334 < new pts 28381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28380 + pts count: 1 = new pts: 28381. update pts: 28364 < new pts 28381, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28380 + pts count: 1 = new pts: 28381, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28115 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28273 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28277 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28282 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28287 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28306 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28315 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28326 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28376 < new pts 28382, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 990721 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 925854 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28115 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28162 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28164 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28166 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28168 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28174 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28177 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28185 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28194 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28202 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28204 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28208 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28220 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28234 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28237 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28262 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28334 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28364 < new pts 28382, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28115 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28273 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28277 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28282 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28287 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28306 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28315 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28326 < new pts 28382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28381 + pts count: 1 = new pts: 28382. update pts: 28376 < new pts 28382, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 932557 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 993887 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28115 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28273 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28277 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28282 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28287 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28306 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28315 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28326 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28376 < new pts 28384, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28115 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28162 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28164 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28166 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28168 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28174 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28177 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28185 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28194 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28202 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28204 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28208 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28220 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28234 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28237 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28262 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28334 < new pts 28384, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28383 + pts count: 1 = new pts: 28384. update pts: 28364 < new pts 28384, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 940920 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 996515 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28384 + pts count: 1 = new pts: 28385. update pts: 28115 < new pts 28385, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28384 + pts count: 1 = new pts: 28385. update pts: 28273 < new pts 28385, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28384 + pts count: 1 = new pts: 28385. update pts: 28277 < new pts 28385, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28384 + pts count: 1 = new pts: 28385. update pts: 28282 < new pts 28385, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28384 + pts count: 1 = new pts: 28385. update pts: 28287 < new pts 28385, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28384 + pts count: 1 = new pts: 28385. update pts: 28306 < new pts 28385, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28384 + pts count: 1 = new pts: 28385. update pts: 28315 < new pts 28385, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28384 + pts count: 1 = new pts: 28385. update pts: 28326 < new pts 28385, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28384 + pts count: 1 = new pts: 28385. update pts: 28376 < new pts 28385, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28385, pts count: 1, new pts: 28386 < update pts: 28388, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28115 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28162 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28164 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28166 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28168 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28174 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28177 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28185 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28194 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28202 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28204 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28208 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28220 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28234 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28237 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28262 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28334 < new pts 28389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28388 + pts count: 1 = new pts: 28389. update pts: 28364 < new pts 28389, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 942717 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28388 + pts count: 1 = new pts: 28389, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28389 + pts count: 1 = new pts: 28390. update pts: 28115 < new pts 28390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28389 + pts count: 1 = new pts: 28390. update pts: 28273 < new pts 28390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28389 + pts count: 1 = new pts: 28390. update pts: 28277 < new pts 28390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28389 + pts count: 1 = new pts: 28390. update pts: 28282 < new pts 28390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28389 + pts count: 1 = new pts: 28390. update pts: 28287 < new pts 28390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28389 + pts count: 1 = new pts: 28390. update pts: 28306 < new pts 28390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28389 + pts count: 1 = new pts: 28390. update pts: 28315 < new pts 28390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28389 + pts count: 1 = new pts: 28390. update pts: 28326 < new pts 28390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28389 + pts count: 1 = new pts: 28390. update pts: 28376 < new pts 28390, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1002503 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28388, pts count: 1, new pts: 28389 < update pts: 28390, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28115 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28162 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28164 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28166 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28168 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28174 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28177 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28185 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28194 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28202 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28204 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28208 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28220 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28234 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28237 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28262 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28334 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28364 < new pts 28391, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 941499 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28115 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28273 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28277 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28282 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28287 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28306 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28315 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28326 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28376 < new pts 28391, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1004454 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28115 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28162 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28164 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28166 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28168 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28174 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28177 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28185 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28194 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28202 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28204 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28208 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28220 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28234 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28237 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28262 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28334 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28390 + pts count: 1 = new pts: 28391. update pts: 28364 < new pts 28391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28390 + pts count: 1 = new pts: 28391, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 940636 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28391 + pts count: 1 = new pts: 28392. update pts: 28115 < new pts 28392, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28391 + pts count: 1 = new pts: 28392. update pts: 28273 < new pts 28392, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28391 + pts count: 1 = new pts: 28392. update pts: 28277 < new pts 28392, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28391 + pts count: 1 = new pts: 28392. update pts: 28282 < new pts 28392, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28391 + pts count: 1 = new pts: 28392. update pts: 28287 < new pts 28392, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28391 + pts count: 1 = new pts: 28392. update pts: 28306 < new pts 28392, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28391 + pts count: 1 = new pts: 28392. update pts: 28315 < new pts 28392, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28391 + pts count: 1 = new pts: 28392. update pts: 28326 < new pts 28392, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28391 + pts count: 1 = new pts: 28392. update pts: 28376 < new pts 28392, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1011918 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28115 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28162 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28164 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28166 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28168 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28174 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28177 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28185 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28194 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28202 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28204 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28208 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28220 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28234 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28237 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28262 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28334 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28364 < new pts 28393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28392 + pts count: 1 = new pts: 28393. update pts: 28391 < new pts 28393, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 948727 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28394 + pts count: 1 = new pts: 28395. update pts: 28115 < new pts 28395, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28394 + pts count: 1 = new pts: 28395. update pts: 28273 < new pts 28395, channel id: -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28394 + pts count: 1 = new pts: 28395. update pts: 28277 < new pts 28395, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28394 + pts count: 1 = new pts: 28395. update pts: 28282 < new pts 28395, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28394 + pts count: 1 = new pts: 28395. update pts: 28287 < new pts 28395, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28394 + pts count: 1 = new pts: 28395. update pts: 28306 < new pts 28395, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28394 + pts count: 1 = new pts: 28395. update pts: 28315 < new pts 28395, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28394 + pts count: 1 = new pts: 28395. update pts: 28326 < new pts 28395, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28394 + pts count: 1 = new pts: 28395. update pts: 28376 < new pts 28395, channel id: -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1016507 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 946791 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28115 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28162 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28164 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28166 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28168 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28174 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28177 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28185 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28194 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28202 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28204 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28208 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28220 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28234 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28237 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28262 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28334 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28364 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28391 < new pts 28396, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28115 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28273 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28277 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28282 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28287 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28306 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28315 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28326 < new pts 28396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28395 + pts count: 1 = new pts: 28396. update pts: 28376 < new pts 28396, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28395, pts count: 1, new pts: 28396 < update pts: 28398, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28395, pts count: 1, new pts: 28396 < update pts: 28399, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28395, pts count: 1, new pts: 28396 < update pts: 28401, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 952111 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1024801 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28115 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28273 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28277 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28282 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28287 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28306 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28315 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28326 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28376 < new pts 28402, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28115 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28162 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28164 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28166 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28168 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28174 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28177 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28185 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28194 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28202 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28204 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28208 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28220 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28234 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28237 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28262 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28334 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28364 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28391 < new pts 28402, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 948566 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28115 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28273 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28277 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28282 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28287 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28306 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28315 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28326 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28376 < new pts 28402, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1023250 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28115 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28162 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28164 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28166 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28168 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28174 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28177 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28185 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28194 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28202 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28204 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28208 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28220 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28234 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28237 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28262 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28334 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28364 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28391 < new pts 28402, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 943993 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28115 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28273 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28277 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28282 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28287 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28306 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28315 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28326 < new pts 28402, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28401 + pts count: 1 = new pts: 28402. update pts: 28376 < new pts 28402, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1021505 bytes -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 946198 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28402, pts count: 1, new pts: 28403 < update pts: 28408, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28410 + pts count: 1 = new pts: 28411. update pts: 28115 < new pts 28411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28410 + pts count: 1 = new pts: 28411. update pts: 28273 < new pts 28411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28410 + pts count: 1 = new pts: 28411. update pts: 28277 < new pts 28411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28410 + pts count: 1 = new pts: 28411. update pts: 28282 < new pts 28411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28410 + pts count: 1 = new pts: 28411. update pts: 28287 < new pts 28411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28410 + pts count: 1 = new pts: 28411. update pts: 28306 < new pts 28411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28410 + pts count: 1 = new pts: 28411. update pts: 28315 < new pts 28411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28410 + pts count: 1 = new pts: 28411. update pts: 28326 < new pts 28411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28410 + pts count: 1 = new pts: 28411. update pts: 28376 < new pts 28411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28410 + pts count: 1 = new pts: 28411. update pts: 28403 < new pts 28411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28410 + pts count: 1 = new pts: 28411. update pts: 28404 < new pts 28411, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 958479 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28411 + pts count: 1 = new pts: 28412. update pts: 28115 < new pts 28412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28411 + pts count: 1 = new pts: 28412. update pts: 28273 < new pts 28412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28411 + pts count: 1 = new pts: 28412. update pts: 28277 < new pts 28412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28411 + pts count: 1 = new pts: 28412. update pts: 28282 < new pts 28412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28411 + pts count: 1 = new pts: 28412. update pts: 28287 < new pts 28412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28411 + pts count: 1 = new pts: 28412. update pts: 28306 < new pts 28412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28411 + pts count: 1 = new pts: 28412. update pts: 28315 < new pts 28412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28411 + pts count: 1 = new pts: 28412. update pts: 28326 < new pts 28412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28411 + pts count: 1 = new pts: 28412. update pts: 28376 < new pts 28412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28411 + pts count: 1 = new pts: 28412. update pts: 28403 < new pts 28412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28411 + pts count: 1 = new pts: 28412. update pts: 28404 < new pts 28412, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28411, pts count: 1, new pts: 28412 < update pts: 28415, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 957042 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28418 + pts count: 1 = new pts: 28419, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28419 + pts count: 1 = new pts: 28420. update pts: 28115 < new pts 28420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28419 + pts count: 1 = new pts: 28420. update pts: 28273 < new pts 28420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28419 + pts count: 1 = new pts: 28420. update pts: 28277 < new pts 28420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28419 + pts count: 1 = new pts: 28420. update pts: 28282 < new pts 28420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28419 + pts count: 1 = new pts: 28420. update pts: 28287 < new pts 28420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28419 + pts count: 1 = new pts: 28420. update pts: 28306 < new pts 28420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28419 + pts count: 1 = new pts: 28420. update pts: 28315 < new pts 28420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28419 + pts count: 1 = new pts: 28420. update pts: 28326 < new pts 28420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28419 + pts count: 1 = new pts: 28420. update pts: 28376 < new pts 28420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28419 + pts count: 1 = new pts: 28420. update pts: 28403 < new pts 28420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28419 + pts count: 1 = new pts: 28420. update pts: 28404 < new pts 28420, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 957282 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28420 + pts count: 1 = new pts: 28421. update pts: 28115 < new pts 28421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28420 + pts count: 1 = new pts: 28421. update pts: 28273 < new pts 28421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28420 + pts count: 1 = new pts: 28421. update pts: 28277 < new pts 28421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28420 + pts count: 1 = new pts: 28421. update pts: 28282 < new pts 28421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28420 + pts count: 1 = new pts: 28421. update pts: 28287 < new pts 28421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28420 + pts count: 1 = new pts: 28421. update pts: 28306 < new pts 28421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28420 + pts count: 1 = new pts: 28421. update pts: 28315 < new pts 28421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28420 + pts count: 1 = new pts: 28421. update pts: 28326 < new pts 28421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28420 + pts count: 1 = new pts: 28421. update pts: 28376 < new pts 28421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28420 + pts count: 1 = new pts: 28421. update pts: 28403 < new pts 28421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28420 + pts count: 1 = new pts: 28421. update pts: 28404 < new pts 28421, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 958986 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28422 + pts count: 1 = new pts: 28423. update pts: 28115 < new pts 28423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28422 + pts count: 1 = new pts: 28423. update pts: 28273 < new pts 28423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28422 + pts count: 1 = new pts: 28423. update pts: 28277 < new pts 28423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28422 + pts count: 1 = new pts: 28423. update pts: 28282 < new pts 28423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28422 + pts count: 1 = new pts: 28423. update pts: 28287 < new pts 28423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28422 + pts count: 1 = new pts: 28423. update pts: 28306 < new pts 28423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28422 + pts count: 1 = new pts: 28423. update pts: 28315 < new pts 28423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28422 + pts count: 1 = new pts: 28423. update pts: 28326 < new pts 28423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28422 + pts count: 1 = new pts: 28423. update pts: 28376 < new pts 28423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28422 + pts count: 1 = new pts: 28423. update pts: 28403 < new pts 28423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28422 + pts count: 1 = new pts: 28423. update pts: 28404 < new pts 28423, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -Wrote 958511 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28423 + pts count: 1 = new pts: 28424. update pts: 28115 < new pts 28424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28423 + pts count: 1 = new pts: 28424. update pts: 28273 < new pts 28424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28423 + pts count: 1 = new pts: 28424. update pts: 28277 < new pts 28424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28423 + pts count: 1 = new pts: 28424. update pts: 28282 < new pts 28424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28423 + pts count: 1 = new pts: 28424. update pts: 28287 < new pts 28424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28423 + pts count: 1 = new pts: 28424. update pts: 28306 < new pts 28424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28423 + pts count: 1 = new pts: 28424. update pts: 28315 < new pts 28424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28423 + pts count: 1 = new pts: 28424. update pts: 28326 < new pts 28424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28423 + pts count: 1 = new pts: 28424. update pts: 28376 < new pts 28424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28423 + pts count: 1 = new pts: 28424. update pts: 28403 < new pts 28424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28423 + pts count: 1 = new pts: 28424. update pts: 28404 < new pts 28424, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28423 + pts count: 1 = new pts: 28424, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 961055 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28425 + pts count: 1 = new pts: 28426. update pts: 28115 < new pts 28426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28425 + pts count: 1 = new pts: 28426. update pts: 28273 < new pts 28426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28425 + pts count: 1 = new pts: 28426. update pts: 28277 < new pts 28426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28425 + pts count: 1 = new pts: 28426. update pts: 28282 < new pts 28426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28425 + pts count: 1 = new pts: 28426. update pts: 28287 < new pts 28426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28425 + pts count: 1 = new pts: 28426. update pts: 28306 < new pts 28426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28425 + pts count: 1 = new pts: 28426. update pts: 28315 < new pts 28426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28425 + pts count: 1 = new pts: 28426. update pts: 28326 < new pts 28426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28425 + pts count: 1 = new pts: 28426. update pts: 28376 < new pts 28426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28425 + pts count: 1 = new pts: 28426. update pts: 28403 < new pts 28426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28425 + pts count: 1 = new pts: 28426. update pts: 28404 < new pts 28426, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 960761 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28115 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28273 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28277 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28282 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28287 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28306 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28315 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28326 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28376 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28403 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28404 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28427 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 959095 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28115 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28273 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28277 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28282 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28287 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28306 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28315 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28326 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28376 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28403 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28404 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28427 + pts count: 1 = new pts: 28428. update pts: 28427 < new pts 28428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 958870 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28115 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28273 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28277 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28282 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28287 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28306 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28315 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28326 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28376 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28403 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28404 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28427 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28428 < new pts 28429, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 960173 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28115 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28273 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28277 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28282 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28287 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28306 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28315 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28326 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28376 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28403 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28404 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28427 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28428 < new pts 28429, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 957345 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28115 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28273 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28277 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28282 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28287 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28306 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28315 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28326 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28376 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28403 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28404 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28427 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28428 < new pts 28429, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 955366 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28115 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28273 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28277 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28282 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28287 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28306 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28315 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28326 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28376 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28403 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28404 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28427 < new pts 28429, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28428 + pts count: 1 = new pts: 28429. update pts: 28428 < new pts 28429, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 960190 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28432 + pts count: 1 = new pts: 28433. update pts: 28115 < new pts 28433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28432 + pts count: 1 = new pts: 28433. update pts: 28273 < new pts 28433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28432 + pts count: 1 = new pts: 28433. update pts: 28277 < new pts 28433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28432 + pts count: 1 = new pts: 28433. update pts: 28282 < new pts 28433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28432 + pts count: 1 = new pts: 28433. update pts: 28287 < new pts 28433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28432 + pts count: 1 = new pts: 28433. update pts: 28306 < new pts 28433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28432 + pts count: 1 = new pts: 28433. update pts: 28315 < new pts 28433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28432 + pts count: 1 = new pts: 28433. update pts: 28326 < new pts 28433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28432 + pts count: 1 = new pts: 28433. update pts: 28376 < new pts 28433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28432 + pts count: 1 = new pts: 28433. update pts: 28403 < new pts 28433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28432 + pts count: 1 = new pts: 28433. update pts: 28404 < new pts 28433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28432 + pts count: 1 = new pts: 28433. update pts: 28427 < new pts 28433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28432 + pts count: 1 = new pts: 28433. update pts: 28428 < new pts 28433, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 967336 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28434 + pts count: 1 = new pts: 28435. update pts: 28115 < new pts 28435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28434 + pts count: 1 = new pts: 28435. update pts: 28273 < new pts 28435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28434 + pts count: 1 = new pts: 28435. update pts: 28277 < new pts 28435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28434 + pts count: 1 = new pts: 28435. update pts: 28282 < new pts 28435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28434 + pts count: 1 = new pts: 28435. update pts: 28287 < new pts 28435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28434 + pts count: 1 = new pts: 28435. update pts: 28306 < new pts 28435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28434 + pts count: 1 = new pts: 28435. update pts: 28315 < new pts 28435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28434 + pts count: 1 = new pts: 28435. update pts: 28326 < new pts 28435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28434 + pts count: 1 = new pts: 28435. update pts: 28376 < new pts 28435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28434 + pts count: 1 = new pts: 28435. update pts: 28403 < new pts 28435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28434 + pts count: 1 = new pts: 28435. update pts: 28404 < new pts 28435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28434 + pts count: 1 = new pts: 28435. update pts: 28427 < new pts 28435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28434 + pts count: 1 = new pts: 28435. update pts: 28428 < new pts 28435, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 967393 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28436 + pts count: 1 = new pts: 28437. update pts: 28115 < new pts 28437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28436 + pts count: 1 = new pts: 28437. update pts: 28273 < new pts 28437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28436 + pts count: 1 = new pts: 28437. update pts: 28277 < new pts 28437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28436 + pts count: 1 = new pts: 28437. update pts: 28282 < new pts 28437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28436 + pts count: 1 = new pts: 28437. update pts: 28287 < new pts 28437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28436 + pts count: 1 = new pts: 28437. update pts: 28306 < new pts 28437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28436 + pts count: 1 = new pts: 28437. update pts: 28315 < new pts 28437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28436 + pts count: 1 = new pts: 28437. update pts: 28326 < new pts 28437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28436 + pts count: 1 = new pts: 28437. update pts: 28376 < new pts 28437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28436 + pts count: 1 = new pts: 28437. update pts: 28403 < new pts 28437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28436 + pts count: 1 = new pts: 28437. update pts: 28404 < new pts 28437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28436 + pts count: 1 = new pts: 28437. update pts: 28427 < new pts 28437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28436 + pts count: 1 = new pts: 28437. update pts: 28428 < new pts 28437, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28437 + pts count: 1 = new pts: 28438, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 972285 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28438 + pts count: 1 = new pts: 28439. update pts: 28115 < new pts 28439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28438 + pts count: 1 = new pts: 28439. update pts: 28273 < new pts 28439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28438 + pts count: 1 = new pts: 28439. update pts: 28277 < new pts 28439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28438 + pts count: 1 = new pts: 28439. update pts: 28282 < new pts 28439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28438 + pts count: 1 = new pts: 28439. update pts: 28287 < new pts 28439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28438 + pts count: 1 = new pts: 28439. update pts: 28306 < new pts 28439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28438 + pts count: 1 = new pts: 28439. update pts: 28315 < new pts 28439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28438 + pts count: 1 = new pts: 28439. update pts: 28326 < new pts 28439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28438 + pts count: 1 = new pts: 28439. update pts: 28376 < new pts 28439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28438 + pts count: 1 = new pts: 28439. update pts: 28403 < new pts 28439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28438 + pts count: 1 = new pts: 28439. update pts: 28404 < new pts 28439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28438 + pts count: 1 = new pts: 28439. update pts: 28427 < new pts 28439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28438 + pts count: 1 = new pts: 28439. update pts: 28428 < new pts 28439, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 971967 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28115 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28273 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28277 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28282 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28287 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28306 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28315 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28326 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28376 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28403 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28404 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28427 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28428 < new pts 28440, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 967635 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28115 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28273 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28277 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28282 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28287 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28306 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28315 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28326 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28376 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28403 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28404 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28427 < new pts 28440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28439 + pts count: 1 = new pts: 28440. update pts: 28428 < new pts 28440, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 969144 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28115 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28273 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28277 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28282 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28287 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28306 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28315 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28326 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28376 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28403 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28404 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28427 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28428 < new pts 28441, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 965472 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28115 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28273 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28277 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28282 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28287 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28306 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28315 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28326 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28376 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28403 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28404 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28427 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28440 + pts count: 1 = new pts: 28441. update pts: 28428 < new pts 28441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28440 + pts count: 1 = new pts: 28441, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 969890 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28442 + pts count: 1 = new pts: 28443. update pts: 28115 < new pts 28443, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28442 + pts count: 1 = new pts: 28443. update pts: 28273 < new pts 28443, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28442 + pts count: 1 = new pts: 28443. update pts: 28277 < new pts 28443, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28442 + pts count: 1 = new pts: 28443. update pts: 28282 < new pts 28443, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28442 + pts count: 1 = new pts: 28443. update pts: 28287 < new pts 28443, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28442 + pts count: 1 = new pts: 28443. update pts: 28306 < new pts 28443, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28442 + pts count: 1 = new pts: 28443. update pts: 28315 < new pts 28443, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28442 + pts count: 1 = new pts: 28443. update pts: 28326 < new pts 28443, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28442 + pts count: 1 = new pts: 28443. update pts: 28376 < new pts 28443, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28442 + pts count: 1 = new pts: 28443. update pts: 28403 < new pts 28443, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28442 + pts count: 1 = new pts: 28443. update pts: 28404 < new pts 28443, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28442 + pts count: 1 = new pts: 28443. update pts: 28427 < new pts 28443, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28442 + pts count: 1 = new pts: 28443. update pts: 28428 < new pts 28443, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28442 + pts count: 1 = new pts: 28443. update pts: 28441 < new pts 28443, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28443 + pts count: 1 = new pts: 28444, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 970420 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28444, pts count: 1, new pts: 28445 < update pts: 28447, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28447 + pts count: 1 = new pts: 28448. update pts: 28115 < new pts 28448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28447 + pts count: 1 = new pts: 28448. update pts: 28273 < new pts 28448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28447 + pts count: 1 = new pts: 28448. update pts: 28277 < new pts 28448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28447 + pts count: 1 = new pts: 28448. update pts: 28282 < new pts 28448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28447 + pts count: 1 = new pts: 28448. update pts: 28287 < new pts 28448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28447 + pts count: 1 = new pts: 28448. update pts: 28306 < new pts 28448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28447 + pts count: 1 = new pts: 28448. update pts: 28315 < new pts 28448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28447 + pts count: 1 = new pts: 28448. update pts: 28326 < new pts 28448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28447 + pts count: 1 = new pts: 28448. update pts: 28376 < new pts 28448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28447 + pts count: 1 = new pts: 28448. update pts: 28403 < new pts 28448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28447 + pts count: 1 = new pts: 28448. update pts: 28404 < new pts 28448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28447 + pts count: 1 = new pts: 28448. update pts: 28427 < new pts 28448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28447 + pts count: 1 = new pts: 28448. update pts: 28428 < new pts 28448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28447 + pts count: 1 = new pts: 28448. update pts: 28441 < new pts 28448, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 972782 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28448 + pts count: 1 = new pts: 28449. update pts: 28115 < new pts 28449, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28448 + pts count: 1 = new pts: 28449. update pts: 28273 < new pts 28449, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28448 + pts count: 1 = new pts: 28449. update pts: 28277 < new pts 28449, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28448 + pts count: 1 = new pts: 28449. update pts: 28282 < new pts 28449, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28448 + pts count: 1 = new pts: 28449. update pts: 28287 < new pts 28449, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28448 + pts count: 1 = new pts: 28449. update pts: 28306 < new pts 28449, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28448 + pts count: 1 = new pts: 28449. update pts: 28315 < new pts 28449, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28448 + pts count: 1 = new pts: 28449. update pts: 28326 < new pts 28449, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28448 + pts count: 1 = new pts: 28449. update pts: 28376 < new pts 28449, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28448 + pts count: 1 = new pts: 28449. update pts: 28403 < new pts 28449, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28448 + pts count: 1 = new pts: 28449. update pts: 28404 < new pts 28449, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28448 + pts count: 1 = new pts: 28449. update pts: 28427 < new pts 28449, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28448 + pts count: 1 = new pts: 28449. update pts: 28428 < new pts 28449, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28448 + pts count: 1 = new pts: 28449. update pts: 28441 < new pts 28449, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28450 + pts count: 1 = new pts: 28451, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 974148 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28451 + pts count: 1 = new pts: 28452. update pts: 28115 < new pts 28452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28451 + pts count: 1 = new pts: 28452. update pts: 28273 < new pts 28452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28451 + pts count: 1 = new pts: 28452. update pts: 28277 < new pts 28452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28451 + pts count: 1 = new pts: 28452. update pts: 28282 < new pts 28452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28451 + pts count: 1 = new pts: 28452. update pts: 28287 < new pts 28452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28451 + pts count: 1 = new pts: 28452. update pts: 28306 < new pts 28452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28451 + pts count: 1 = new pts: 28452. update pts: 28315 < new pts 28452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28451 + pts count: 1 = new pts: 28452. update pts: 28326 < new pts 28452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28451 + pts count: 1 = new pts: 28452. update pts: 28376 < new pts 28452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28451 + pts count: 1 = new pts: 28452. update pts: 28403 < new pts 28452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28451 + pts count: 1 = new pts: 28452. update pts: 28404 < new pts 28452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28451 + pts count: 1 = new pts: 28452. update pts: 28427 < new pts 28452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28451 + pts count: 1 = new pts: 28452. update pts: 28428 < new pts 28452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28451 + pts count: 1 = new pts: 28452. update pts: 28441 < new pts 28452, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 973976 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28452 + pts count: 1 = new pts: 28453. update pts: 28115 < new pts 28453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28452 + pts count: 1 = new pts: 28453. update pts: 28273 < new pts 28453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28452 + pts count: 1 = new pts: 28453. update pts: 28277 < new pts 28453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28452 + pts count: 1 = new pts: 28453. update pts: 28282 < new pts 28453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28452 + pts count: 1 = new pts: 28453. update pts: 28287 < new pts 28453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28452 + pts count: 1 = new pts: 28453. update pts: 28306 < new pts 28453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28452 + pts count: 1 = new pts: 28453. update pts: 28315 < new pts 28453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28452 + pts count: 1 = new pts: 28453. update pts: 28326 < new pts 28453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28452 + pts count: 1 = new pts: 28453. update pts: 28376 < new pts 28453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28452 + pts count: 1 = new pts: 28453. update pts: 28403 < new pts 28453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28452 + pts count: 1 = new pts: 28453. update pts: 28404 < new pts 28453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28452 + pts count: 1 = new pts: 28453. update pts: 28427 < new pts 28453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28452 + pts count: 1 = new pts: 28453. update pts: 28428 < new pts 28453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28452 + pts count: 1 = new pts: 28453. update pts: 28441 < new pts 28453, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 976087 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28454 + pts count: 1 = new pts: 28455. update pts: 28115 < new pts 28455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28454 + pts count: 1 = new pts: 28455. update pts: 28273 < new pts 28455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28454 + pts count: 1 = new pts: 28455. update pts: 28277 < new pts 28455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28454 + pts count: 1 = new pts: 28455. update pts: 28282 < new pts 28455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28454 + pts count: 1 = new pts: 28455. update pts: 28287 < new pts 28455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28454 + pts count: 1 = new pts: 28455. update pts: 28306 < new pts 28455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28454 + pts count: 1 = new pts: 28455. update pts: 28315 < new pts 28455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28454 + pts count: 1 = new pts: 28455. update pts: 28326 < new pts 28455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28454 + pts count: 1 = new pts: 28455. update pts: 28376 < new pts 28455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28454 + pts count: 1 = new pts: 28455. update pts: 28403 < new pts 28455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28454 + pts count: 1 = new pts: 28455. update pts: 28404 < new pts 28455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28454 + pts count: 1 = new pts: 28455. update pts: 28427 < new pts 28455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28454 + pts count: 1 = new pts: 28455. update pts: 28428 < new pts 28455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28454 + pts count: 1 = new pts: 28455. update pts: 28441 < new pts 28455, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28454, pts count: 1, new pts: 28455 < update pts: 28456, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 978656 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28457 + pts count: 1 = new pts: 28458. update pts: 28115 < new pts 28458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28457 + pts count: 1 = new pts: 28458. update pts: 28273 < new pts 28458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28457 + pts count: 1 = new pts: 28458. update pts: 28277 < new pts 28458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28457 + pts count: 1 = new pts: 28458. update pts: 28282 < new pts 28458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28457 + pts count: 1 = new pts: 28458. update pts: 28287 < new pts 28458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28457 + pts count: 1 = new pts: 28458. update pts: 28306 < new pts 28458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28457 + pts count: 1 = new pts: 28458. update pts: 28315 < new pts 28458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28457 + pts count: 1 = new pts: 28458. update pts: 28326 < new pts 28458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28457 + pts count: 1 = new pts: 28458. update pts: 28376 < new pts 28458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28457 + pts count: 1 = new pts: 28458. update pts: 28403 < new pts 28458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28457 + pts count: 1 = new pts: 28458. update pts: 28404 < new pts 28458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28457 + pts count: 1 = new pts: 28458. update pts: 28427 < new pts 28458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28457 + pts count: 1 = new pts: 28458. update pts: 28428 < new pts 28458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28457 + pts count: 1 = new pts: 28458. update pts: 28441 < new pts 28458, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 979498 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28459, pts count: 1, new pts: 28460 < update pts: 28461, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28461 + pts count: 1 = new pts: 28462. update pts: 28115 < new pts 28462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28461 + pts count: 1 = new pts: 28462. update pts: 28273 < new pts 28462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28461 + pts count: 1 = new pts: 28462. update pts: 28277 < new pts 28462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28461 + pts count: 1 = new pts: 28462. update pts: 28282 < new pts 28462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28461 + pts count: 1 = new pts: 28462. update pts: 28287 < new pts 28462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28461 + pts count: 1 = new pts: 28462. update pts: 28306 < new pts 28462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28461 + pts count: 1 = new pts: 28462. update pts: 28315 < new pts 28462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28461 + pts count: 1 = new pts: 28462. update pts: 28326 < new pts 28462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28461 + pts count: 1 = new pts: 28462. update pts: 28376 < new pts 28462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28461 + pts count: 1 = new pts: 28462. update pts: 28403 < new pts 28462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28461 + pts count: 1 = new pts: 28462. update pts: 28404 < new pts 28462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28461 + pts count: 1 = new pts: 28462. update pts: 28427 < new pts 28462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28461 + pts count: 1 = new pts: 28462. update pts: 28428 < new pts 28462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28461 + pts count: 1 = new pts: 28462. update pts: 28441 < new pts 28462, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 979598 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28461, pts count: 1, new pts: 28462 < update pts: 28463, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28115 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28273 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28277 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28282 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28287 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28306 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28315 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28326 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28376 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28403 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28404 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28427 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28428 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28441 < new pts 28464, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 982071 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28115 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28273 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28277 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28282 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28287 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28306 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28315 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28326 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28376 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28403 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28404 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28427 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28428 < new pts 28464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28463 + pts count: 1 = new pts: 28464. update pts: 28441 < new pts 28464, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 981259 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28465 + pts count: 1 = new pts: 28466. update pts: 28115 < new pts 28466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28465 + pts count: 1 = new pts: 28466. update pts: 28273 < new pts 28466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28465 + pts count: 1 = new pts: 28466. update pts: 28277 < new pts 28466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28465 + pts count: 1 = new pts: 28466. update pts: 28282 < new pts 28466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28465 + pts count: 1 = new pts: 28466. update pts: 28287 < new pts 28466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28465 + pts count: 1 = new pts: 28466. update pts: 28306 < new pts 28466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28465 + pts count: 1 = new pts: 28466. update pts: 28315 < new pts 28466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28465 + pts count: 1 = new pts: 28466. update pts: 28326 < new pts 28466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28465 + pts count: 1 = new pts: 28466. update pts: 28376 < new pts 28466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28465 + pts count: 1 = new pts: 28466. update pts: 28403 < new pts 28466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28465 + pts count: 1 = new pts: 28466. update pts: 28404 < new pts 28466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28465 + pts count: 1 = new pts: 28466. update pts: 28427 < new pts 28466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28465 + pts count: 1 = new pts: 28466. update pts: 28428 < new pts 28466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28465 + pts count: 1 = new pts: 28466. update pts: 28441 < new pts 28466, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 981394 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28467 + pts count: 1 = new pts: 28468. update pts: 28115 < new pts 28468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28467 + pts count: 1 = new pts: 28468. update pts: 28273 < new pts 28468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28467 + pts count: 1 = new pts: 28468. update pts: 28277 < new pts 28468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28467 + pts count: 1 = new pts: 28468. update pts: 28282 < new pts 28468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28467 + pts count: 1 = new pts: 28468. update pts: 28287 < new pts 28468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28467 + pts count: 1 = new pts: 28468. update pts: 28306 < new pts 28468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28467 + pts count: 1 = new pts: 28468. update pts: 28315 < new pts 28468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28467 + pts count: 1 = new pts: 28468. update pts: 28326 < new pts 28468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28467 + pts count: 1 = new pts: 28468. update pts: 28376 < new pts 28468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28467 + pts count: 1 = new pts: 28468. update pts: 28403 < new pts 28468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28467 + pts count: 1 = new pts: 28468. update pts: 28404 < new pts 28468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28467 + pts count: 1 = new pts: 28468. update pts: 28427 < new pts 28468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28467 + pts count: 1 = new pts: 28468. update pts: 28428 < new pts 28468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28467 + pts count: 1 = new pts: 28468. update pts: 28441 < new pts 28468, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 983385 bytes -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28481 + pts count: 1 = new pts: 28482. update pts: 28115 < new pts 28482, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 634307 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28481 + pts count: 1 = new pts: 28482. update pts: 28115 < new pts 28482, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 643208 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28482 + pts count: 1 = new pts: 28483. update pts: 28115 < new pts 28483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28482 + pts count: 1 = new pts: 28483. update pts: 28482 < new pts 28483, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 657103 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28483 + pts count: 1 = new pts: 28484. update pts: 28115 < new pts 28484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28483 + pts count: 1 = new pts: 28484. update pts: 28482 < new pts 28484, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 662937 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28483 + pts count: 1 = new pts: 28484. update pts: 28115 < new pts 28484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28483 + pts count: 1 = new pts: 28484. update pts: 28482 < new pts 28484, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 674906 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28485 + pts count: 1 = new pts: 28486. update pts: 28115 < new pts 28486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28485 + pts count: 1 = new pts: 28486. update pts: 28482 < new pts 28486, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 689352 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28486 + pts count: 1 = new pts: 28487. update pts: 28115 < new pts 28487, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28486 + pts count: 1 = new pts: 28487. update pts: 28482 < new pts 28487, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 695187 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28486 + pts count: 1 = new pts: 28487. update pts: 28115 < new pts 28487, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28486 + pts count: 1 = new pts: 28487. update pts: 28482 < new pts 28487, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28486 + pts count: 1 = new pts: 28487, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 715127 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28488 + pts count: 1 = new pts: 28489. update pts: 28115 < new pts 28489, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28488 + pts count: 1 = new pts: 28489. update pts: 28482 < new pts 28489, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28488 + pts count: 1 = new pts: 28489. update pts: 28487 < new pts 28489, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 724027 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28489 + pts count: 1 = new pts: 28490. update pts: 28115 < new pts 28490, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28489 + pts count: 1 = new pts: 28490. update pts: 28482 < new pts 28490, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28489 + pts count: 1 = new pts: 28490. update pts: 28487 < new pts 28490, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28489 + pts count: 1 = new pts: 28490. update pts: 28489 < new pts 28490, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 734855 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28489 + pts count: 1 = new pts: 28490. update pts: 28115 < new pts 28490, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28489 + pts count: 1 = new pts: 28490. update pts: 28482 < new pts 28490, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28489 + pts count: 1 = new pts: 28490. update pts: 28487 < new pts 28490, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28489 + pts count: 1 = new pts: 28490. update pts: 28489 < new pts 28490, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 746821 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28491 + pts count: 1 = new pts: 28492. update pts: 28115 < new pts 28492, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28491 + pts count: 1 = new pts: 28492. update pts: 28482 < new pts 28492, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28491 + pts count: 1 = new pts: 28492. update pts: 28487 < new pts 28492, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28491 + pts count: 1 = new pts: 28492. update pts: 28489 < new pts 28492, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 761277 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28492 + pts count: 1 = new pts: 28493. update pts: 28115 < new pts 28493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28492 + pts count: 1 = new pts: 28493. update pts: 28482 < new pts 28493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28492 + pts count: 1 = new pts: 28493. update pts: 28487 < new pts 28493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28492 + pts count: 1 = new pts: 28493. update pts: 28489 < new pts 28493, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 770189 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28493 + pts count: 1 = new pts: 28494. update pts: 28115 < new pts 28494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28493 + pts count: 1 = new pts: 28494. update pts: 28482 < new pts 28494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28493 + pts count: 1 = new pts: 28494. update pts: 28487 < new pts 28494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28493 + pts count: 1 = new pts: 28494. update pts: 28489 < new pts 28494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28493 + pts count: 1 = new pts: 28494. update pts: 28493 < new pts 28494, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 784098 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28494 + pts count: 1 = new pts: 28495. update pts: 28115 < new pts 28495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28494 + pts count: 1 = new pts: 28495. update pts: 28482 < new pts 28495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28494 + pts count: 1 = new pts: 28495. update pts: 28487 < new pts 28495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28494 + pts count: 1 = new pts: 28495. update pts: 28489 < new pts 28495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28494 + pts count: 1 = new pts: 28495. update pts: 28493 < new pts 28495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28494 + pts count: 1 = new pts: 28495. update pts: 28494 < new pts 28495, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 794940 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28494 + pts count: 1 = new pts: 28495. update pts: 28115 < new pts 28495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28494 + pts count: 1 = new pts: 28495. update pts: 28482 < new pts 28495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28494 + pts count: 1 = new pts: 28495. update pts: 28487 < new pts 28495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28494 + pts count: 1 = new pts: 28495. update pts: 28489 < new pts 28495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28494 + pts count: 1 = new pts: 28495. update pts: 28493 < new pts 28495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28494 + pts count: 1 = new pts: 28495. update pts: 28494 < new pts 28495, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 803869 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28495 + pts count: 1 = new pts: 28496. update pts: 28115 < new pts 28496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28495 + pts count: 1 = new pts: 28496. update pts: 28482 < new pts 28496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28495 + pts count: 1 = new pts: 28496. update pts: 28487 < new pts 28496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28495 + pts count: 1 = new pts: 28496. update pts: 28489 < new pts 28496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28495 + pts count: 1 = new pts: 28496. update pts: 28493 < new pts 28496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28495 + pts count: 1 = new pts: 28496. update pts: 28494 < new pts 28496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28495 + pts count: 1 = new pts: 28496, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 815225 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28496 + pts count: 1 = new pts: 28497. update pts: 28115 < new pts 28497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28496 + pts count: 1 = new pts: 28497. update pts: 28482 < new pts 28497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28496 + pts count: 1 = new pts: 28497. update pts: 28487 < new pts 28497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28496 + pts count: 1 = new pts: 28497. update pts: 28489 < new pts 28497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28496 + pts count: 1 = new pts: 28497. update pts: 28493 < new pts 28497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28496 + pts count: 1 = new pts: 28497. update pts: 28494 < new pts 28497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28496 + pts count: 1 = new pts: 28497. update pts: 28496 < new pts 28497, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 824147 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28497 + pts count: 1 = new pts: 28498. update pts: 28115 < new pts 28498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28497 + pts count: 1 = new pts: 28498. update pts: 28482 < new pts 28498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28497 + pts count: 1 = new pts: 28498. update pts: 28487 < new pts 28498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28497 + pts count: 1 = new pts: 28498. update pts: 28489 < new pts 28498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28497 + pts count: 1 = new pts: 28498. update pts: 28493 < new pts 28498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28497 + pts count: 1 = new pts: 28498. update pts: 28494 < new pts 28498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28497 + pts count: 1 = new pts: 28498. update pts: 28496 < new pts 28498, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 829997 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28497 + pts count: 1 = new pts: 28498. update pts: 28115 < new pts 28498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28497 + pts count: 1 = new pts: 28498. update pts: 28482 < new pts 28498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28497 + pts count: 1 = new pts: 28498. update pts: 28487 < new pts 28498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28497 + pts count: 1 = new pts: 28498. update pts: 28489 < new pts 28498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28497 + pts count: 1 = new pts: 28498. update pts: 28493 < new pts 28498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28497 + pts count: 1 = new pts: 28498. update pts: 28494 < new pts 28498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28497 + pts count: 1 = new pts: 28498. update pts: 28496 < new pts 28498, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 835847 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28497 + pts count: 1 = new pts: 28498, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28498 + pts count: 1 = new pts: 28499. update pts: 28115 < new pts 28499, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28498 + pts count: 1 = new pts: 28499. update pts: 28482 < new pts 28499, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28498 + pts count: 1 = new pts: 28499. update pts: 28487 < new pts 28499, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28498 + pts count: 1 = new pts: 28499. update pts: 28489 < new pts 28499, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28498 + pts count: 1 = new pts: 28499. update pts: 28493 < new pts 28499, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28498 + pts count: 1 = new pts: 28499. update pts: 28494 < new pts 28499, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28498 + pts count: 1 = new pts: 28499. update pts: 28496 < new pts 28499, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 857212 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28500 + pts count: 1 = new pts: 28501, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28501 + pts count: 1 = new pts: 28502. update pts: 28115 < new pts 28502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28501 + pts count: 1 = new pts: 28502. update pts: 28482 < new pts 28502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28501 + pts count: 1 = new pts: 28502. update pts: 28487 < new pts 28502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28501 + pts count: 1 = new pts: 28502. update pts: 28489 < new pts 28502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28501 + pts count: 1 = new pts: 28502. update pts: 28493 < new pts 28502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28501 + pts count: 1 = new pts: 28502. update pts: 28494 < new pts 28502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28501 + pts count: 1 = new pts: 28502. update pts: 28496 < new pts 28502, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 866203 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28501 + pts count: 1 = new pts: 28502. update pts: 28115 < new pts 28502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28501 + pts count: 1 = new pts: 28502. update pts: 28482 < new pts 28502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28501 + pts count: 1 = new pts: 28502. update pts: 28487 < new pts 28502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28501 + pts count: 1 = new pts: 28502. update pts: 28489 < new pts 28502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28501 + pts count: 1 = new pts: 28502. update pts: 28493 < new pts 28502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28501 + pts count: 1 = new pts: 28502. update pts: 28494 < new pts 28502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28501 + pts count: 1 = new pts: 28502. update pts: 28496 < new pts 28502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28501 + pts count: 1 = new pts: 28502, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 877563 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28502 + pts count: 1 = new pts: 28503. update pts: 28115 < new pts 28503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28502 + pts count: 1 = new pts: 28503. update pts: 28482 < new pts 28503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28502 + pts count: 1 = new pts: 28503. update pts: 28487 < new pts 28503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28502 + pts count: 1 = new pts: 28503. update pts: 28489 < new pts 28503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28502 + pts count: 1 = new pts: 28503. update pts: 28493 < new pts 28503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28502 + pts count: 1 = new pts: 28503. update pts: 28494 < new pts 28503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28502 + pts count: 1 = new pts: 28503. update pts: 28496 < new pts 28503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28502 + pts count: 1 = new pts: 28503. update pts: 28502 < new pts 28503, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 887501 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28115 < new pts 28505, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28482 < new pts 28505, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28487 < new pts 28505, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28489 < new pts 28505, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28493 < new pts 28505, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28494 < new pts 28505, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28496 < new pts 28505, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28502 < new pts 28505, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28504 < new pts 28505, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 896118 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28115 < new pts 28505, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28482 < new pts 28505, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28487 < new pts 28505, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28489 < new pts 28505, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28493 < new pts 28505, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28494 < new pts 28505, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28496 < new pts 28505, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28502 < new pts 28505, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28504 + pts count: 1 = new pts: 28505. update pts: 28504 < new pts 28505, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 906047 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28115 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28482 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28487 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28489 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28493 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28494 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28496 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28502 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28504 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28506 < new pts 28507, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 914662 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28115 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28482 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28487 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28489 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28493 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28494 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28496 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28502 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28504 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28506 + pts count: 1 = new pts: 28507. update pts: 28506 < new pts 28507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28506 + pts count: 1 = new pts: 28507, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 932179 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28115 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28482 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28487 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28489 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28493 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28494 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28496 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28502 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28504 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28506 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28507 < new pts 28509, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 935964 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28115 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28482 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28487 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28489 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28493 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28494 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28496 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28502 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28504 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28506 < new pts 28509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28508 + pts count: 1 = new pts: 28509. update pts: 28507 < new pts 28509, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 945894 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28115 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28482 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28487 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28489 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28493 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28494 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28496 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28502 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28504 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28506 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28507 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28510 < new pts 28511, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 954510 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28115 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28482 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28487 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28489 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28493 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28494 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28496 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28502 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28504 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28506 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28507 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28510 + pts count: 1 = new pts: 28511. update pts: 28510 < new pts 28511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28510 + pts count: 1 = new pts: 28511, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Applying pts. current pts: 28511 + pts count: 1 = new pts: 28512, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 967555 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28115 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28482 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28487 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28489 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28493 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28494 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28496 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28502 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28504 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28506 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28507 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28510 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28511 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28512 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28513 < new pts 28514, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 976169 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28115 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28482 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28487 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28489 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28493 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28494 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28496 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28502 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28504 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28506 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28507 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28510 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28511 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28512 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28513 + pts count: 1 = new pts: 28514. update pts: 28513 < new pts 28514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28513 + pts count: 1 = new pts: 28514, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 985245 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28514 + pts count: 1 = new pts: 28515. update pts: 28115 < new pts 28515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28514 + pts count: 1 = new pts: 28515. update pts: 28482 < new pts 28515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28514 + pts count: 1 = new pts: 28515. update pts: 28487 < new pts 28515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28514 + pts count: 1 = new pts: 28515. update pts: 28489 < new pts 28515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28514 + pts count: 1 = new pts: 28515. update pts: 28493 < new pts 28515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28514 + pts count: 1 = new pts: 28515. update pts: 28494 < new pts 28515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28514 + pts count: 1 = new pts: 28515. update pts: 28496 < new pts 28515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28514 + pts count: 1 = new pts: 28515. update pts: 28502 < new pts 28515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28514 + pts count: 1 = new pts: 28515. update pts: 28504 < new pts 28515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28514 + pts count: 1 = new pts: 28515. update pts: 28506 < new pts 28515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28514 + pts count: 1 = new pts: 28515. update pts: 28507 < new pts 28515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28514 + pts count: 1 = new pts: 28515. update pts: 28510 < new pts 28515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28514 + pts count: 1 = new pts: 28515. update pts: 28511 < new pts 28515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28514 + pts count: 1 = new pts: 28515. update pts: 28512 < new pts 28515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28514 + pts count: 1 = new pts: 28515. update pts: 28513 < new pts 28515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28514 + pts count: 1 = new pts: 28515. update pts: 28514 < new pts 28515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28514 + pts count: 1 = new pts: 28515, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 994362 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28115 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28482 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28487 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28489 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28493 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28494 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28496 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28502 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28504 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28506 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28507 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28510 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28511 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28512 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28513 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28514 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28515 + pts count: 1 = new pts: 28516. update pts: 28515 < new pts 28516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28515 + pts count: 1 = new pts: 28516, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1006540 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShortChatMessage. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28517 + pts count: 1 = new pts: 28518, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28115 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28482 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28487 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28489 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28493 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28494 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28496 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28502 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28504 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28506 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28507 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28510 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28511 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28512 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28513 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28514 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28515 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28516 < new pts 28519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28518 + pts count: 1 = new pts: 28519. update pts: 28517 < new pts 28519, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1018993 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28115 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28482 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28487 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28489 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28493 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28494 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28496 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28502 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28504 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28506 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28507 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28510 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28511 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28512 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28513 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28514 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28515 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28516 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28517 < new pts 28520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28519 + pts count: 1 = new pts: 28520. update pts: 28519 < new pts 28520, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1035554 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28115 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28482 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28487 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28489 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28493 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28494 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28496 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28502 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28504 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28506 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28507 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28510 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28511 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28512 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28513 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28514 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28515 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28516 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28517 < new pts 28521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28520 + pts count: 1 = new pts: 28521. update pts: 28519 < new pts 28521, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1046816 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28115 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28482 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28487 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28489 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28493 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28494 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28496 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28502 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28504 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28506 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28507 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28510 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28511 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28512 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28513 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28514 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28515 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28516 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28517 < new pts 28522, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28521 + pts count: 1 = new pts: 28522. update pts: 28519 < new pts 28522, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1050663 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28115 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28482 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28487 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28489 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28493 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28494 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28496 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28502 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28504 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28506 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28507 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28510 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28511 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28512 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28513 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28514 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28515 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28516 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28517 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28519 < new pts 28523, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28522 + pts count: 1 = new pts: 28523. update pts: 28522 < new pts 28523, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1056634 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28115 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28482 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28487 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28489 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28493 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28494 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28496 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28502 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28504 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28506 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28507 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28510 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28511 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28512 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28513 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28514 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28515 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28516 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28517 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28519 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28522 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28523 < new pts 28524, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1057314 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28115 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28482 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28487 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28489 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28493 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28494 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28496 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28502 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28504 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28506 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28507 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28510 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28511 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28512 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28513 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28514 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28515 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28516 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28517 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28519 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28522 < new pts 28524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28523 + pts count: 1 = new pts: 28524. update pts: 28523 < new pts 28524, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1064309 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28115 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28482 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28487 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28489 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28493 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28494 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28496 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28502 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28504 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28506 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28507 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28510 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28511 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28512 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28513 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28514 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28515 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28516 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28517 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28519 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28522 < new pts 28526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28525 + pts count: 1 = new pts: 28526. update pts: 28523 < new pts 28526, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1065753 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28115 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28482 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28487 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28489 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28493 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28494 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28496 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28502 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28504 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28506 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28507 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28510 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28511 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28512 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28513 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28514 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28515 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28516 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28517 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28519 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28522 < new pts 28527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28526 + pts count: 1 = new pts: 28527. update pts: 28523 < new pts 28527, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1067130 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28115 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28482 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28487 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28489 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28493 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28494 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28496 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28502 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28504 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28506 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28507 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28510 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28511 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28512 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28513 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28514 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28515 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28516 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28517 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28519 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28522 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28523 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28527 < new pts 28528, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1070273 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28115 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28482 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28487 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28489 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28493 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28494 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28496 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28502 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28504 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28506 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28507 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28510 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28511 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28512 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28513 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28514 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28515 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28516 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28517 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28519 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28522 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28523 < new pts 28528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28527 + pts count: 1 = new pts: 28528. update pts: 28527 < new pts 28528, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1072182 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28115 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28482 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28487 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28489 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28493 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28494 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28496 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28502 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28504 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28506 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28507 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28510 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28511 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28512 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28513 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28514 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28515 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28516 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28517 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28519 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28522 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28523 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28527 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28529 < new pts 28530, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1072860 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28115 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28482 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28487 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28489 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28493 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28494 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28496 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28502 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28504 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28506 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28507 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28510 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28511 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28512 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28513 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28514 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28515 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28516 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28517 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28519 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28522 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28523 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28527 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28529 < new pts 28530, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1073629 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28115 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28482 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28487 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28489 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28493 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28494 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28496 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28502 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28504 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28506 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28507 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28510 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28511 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28512 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28513 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28514 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28515 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28516 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28517 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28519 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28522 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28523 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28527 < new pts 28530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28529 + pts count: 1 = new pts: 28530. update pts: 28529 < new pts 28530, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1078182 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28115 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28482 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28487 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28489 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28493 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28494 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28496 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28502 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28504 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28506 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28507 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28510 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28511 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28512 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28513 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28514 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28515 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28516 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28517 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28519 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28522 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28523 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28527 < new pts 28532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28531 + pts count: 1 = new pts: 28532. update pts: 28529 < new pts 28532, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1079025 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28115 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28482 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28487 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28489 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28493 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28494 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28496 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28502 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28504 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28506 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28507 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28510 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28511 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28512 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28513 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28514 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28515 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28516 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28517 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28519 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28522 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28523 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28527 < new pts 28533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28532 + pts count: 1 = new pts: 28533. update pts: 28529 < new pts 28533, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1079825 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28115 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28482 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28487 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28489 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28493 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28494 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28496 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28502 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28504 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28506 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28507 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28510 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28511 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28512 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28513 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28514 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28515 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28516 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28517 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28519 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28522 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28523 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28527 < new pts 28536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28535 + pts count: 1 = new pts: 28536. update pts: 28529 < new pts 28536, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1078625 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28535 + pts count: 1 = new pts: 28536, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28115 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28482 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28487 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28489 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28493 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28494 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28496 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28502 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28504 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28506 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28507 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28510 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28511 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28512 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28513 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28514 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28515 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28516 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28517 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28519 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28522 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28523 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28527 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28529 < new pts 28537, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1079898 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28115 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28482 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28487 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28489 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28493 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28494 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28496 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28502 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28504 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28506 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28507 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28510 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28511 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28512 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28513 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28514 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28515 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28516 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28517 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28519 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28522 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28523 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28527 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28529 < new pts 28537, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1078188 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28115 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28482 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28487 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28489 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28493 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28494 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28496 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28502 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28504 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28506 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28507 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28510 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28511 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28512 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28513 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28514 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28515 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28516 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28517 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28519 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28522 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28523 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28527 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28529 < new pts 28537, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1076712 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28115 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28482 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28487 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28489 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28493 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28494 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28496 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28502 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28504 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28506 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28507 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28510 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28511 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28512 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28513 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28514 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28515 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28516 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28517 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28519 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28522 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28523 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28527 < new pts 28537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28536 + pts count: 1 = new pts: 28537. update pts: 28529 < new pts 28537, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1084530 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28115 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28482 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28487 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28489 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28493 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28494 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28496 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28502 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28504 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28506 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28507 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28510 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28511 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28512 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28513 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28514 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28515 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28516 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28517 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28519 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28522 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28523 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28527 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28529 < new pts 28540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28539 + pts count: 1 = new pts: 28540. update pts: 28539 < new pts 28540, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1096778 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28115 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28482 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28487 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28489 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28493 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28494 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28496 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28502 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28504 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28506 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28507 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28510 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28511 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28512 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28513 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28514 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28515 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28516 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28517 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28519 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28522 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28523 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28527 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28529 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28539 < new pts 28543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28542 + pts count: 1 = new pts: 28543. update pts: 28542 < new pts 28543, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1102982 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28115 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28482 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28487 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28489 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28493 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28494 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28496 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28502 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28504 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28506 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28507 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28510 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28511 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28512 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28513 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28514 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28515 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28516 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28517 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28519 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28522 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28523 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28527 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28529 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28539 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28542 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28543 < new pts 28544, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1100776 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28115 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28482 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28487 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28489 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28493 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28494 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28496 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28502 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28504 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28506 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28507 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28510 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28511 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28512 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28513 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28514 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28515 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28516 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28517 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28519 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28522 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28523 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28527 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28529 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28539 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28542 < new pts 28544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28543 + pts count: 1 = new pts: 28544. update pts: 28543 < new pts 28544, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1102151 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28115 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28482 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28487 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28489 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28493 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28494 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28496 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28502 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28504 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28506 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28507 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28510 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28511 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28512 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28513 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28514 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28515 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28516 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28517 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28519 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28522 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28523 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28527 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28529 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28539 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28542 < new pts 28545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28544 + pts count: 1 = new pts: 28545. update pts: 28543 < new pts 28545, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1103937 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28115 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28482 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28487 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28489 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28493 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28494 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28496 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28502 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28504 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28506 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28507 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28510 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28511 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28512 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28513 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28514 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28515 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28516 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28517 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28519 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28522 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28523 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28527 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28529 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28539 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28542 < new pts 28546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28545 + pts count: 1 = new pts: 28546. update pts: 28543 < new pts 28546, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1107811 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28115 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28482 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28487 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28489 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28493 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28494 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28496 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28502 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28504 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28506 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28507 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28510 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28511 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28512 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28513 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28514 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28515 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28516 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28517 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28519 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28522 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28523 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28527 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28529 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28539 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28542 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28546 + pts count: 1 = new pts: 28547. update pts: 28543 < new pts 28547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28546 + pts count: 1 = new pts: 28547, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1106742 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28115 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28482 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28487 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28489 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28493 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28494 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28496 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28502 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28504 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28506 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28507 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28510 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28511 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28512 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28513 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28514 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28515 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28516 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28517 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28519 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28522 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28523 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28527 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28529 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28539 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28542 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28543 < new pts 28548, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28547 + pts count: 1 = new pts: 28548. update pts: 28547 < new pts 28548, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1111244 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28115 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28482 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28487 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28489 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28493 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28494 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28496 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28502 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28504 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28506 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28507 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28510 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28511 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28512 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28513 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28514 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28515 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28516 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28517 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28519 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28522 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28523 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28527 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28529 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28539 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28542 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28543 < new pts 28550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28549 + pts count: 1 = new pts: 28550. update pts: 28547 < new pts 28550, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1115269 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28115 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28482 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28487 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28489 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28493 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28494 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28496 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28502 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28504 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28506 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28507 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28510 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28511 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28512 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28513 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28514 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28515 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28516 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28517 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28519 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28522 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28523 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28527 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28529 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28539 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28542 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28543 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28547 < new pts 28551, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1113537 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28115 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28482 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28487 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28489 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28493 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28494 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28496 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28502 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28504 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28506 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28507 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28510 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28511 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28512 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28513 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28514 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28515 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28516 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28517 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28519 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28522 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28523 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28527 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28529 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28539 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28542 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28543 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28550 + pts count: 1 = new pts: 28551. update pts: 28547 < new pts 28551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28550 + pts count: 1 = new pts: 28551, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1116962 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28115 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28482 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28487 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28489 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28493 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28494 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28496 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28502 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28504 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28506 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28507 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28510 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28511 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28512 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28513 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28514 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28515 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28516 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28517 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28519 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28522 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28523 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28527 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28529 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28539 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28542 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28543 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28547 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28551 + pts count: 1 = new pts: 28552. update pts: 28551 < new pts 28552, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28551 + pts count: 1 = new pts: 28552, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1121980 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28115 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28482 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28487 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28489 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28493 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28494 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28496 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28502 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28504 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28506 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28507 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28510 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28511 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28512 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28513 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28514 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28515 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28516 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28517 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28519 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28522 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28523 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28527 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28529 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28539 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28542 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28543 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28547 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28551 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28552 < new pts 28556, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1122737 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28115 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28482 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28487 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28489 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28493 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28494 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28496 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28502 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28504 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28506 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28507 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28510 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28511 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28512 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28513 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28514 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28515 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28516 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28517 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28519 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28522 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28523 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28527 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28529 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28539 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28542 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28543 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28547 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28551 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28555 + pts count: 1 = new pts: 28556. update pts: 28552 < new pts 28556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28555 + pts count: 1 = new pts: 28556, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1128996 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28115 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28482 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28487 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28489 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28493 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28494 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28496 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28502 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28504 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28506 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28507 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28510 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28511 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28512 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28513 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28514 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28515 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28516 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28517 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28519 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28522 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28523 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28527 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28529 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28539 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28542 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28543 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28547 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28551 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28552 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28556 < new pts 28558, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1127714 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28115 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28482 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28487 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28489 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28493 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28494 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28496 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28502 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28504 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28506 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28507 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28510 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28511 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28512 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28513 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28514 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28515 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28516 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28517 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28519 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28522 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28523 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28527 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28529 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28539 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28542 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28543 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28547 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28551 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28552 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28557 + pts count: 1 = new pts: 28558. update pts: 28556 < new pts 28558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28557 + pts count: 1 = new pts: 28558, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1131333 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28115 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28482 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28487 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28489 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28493 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28494 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28496 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28502 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28504 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28506 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28507 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28510 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28511 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28512 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28513 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28514 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28515 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28516 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28517 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28519 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28522 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28523 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28527 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28529 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28539 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28542 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28543 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28547 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28551 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28552 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28556 < new pts 28559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28558 + pts count: 1 = new pts: 28559. update pts: 28558 < new pts 28559, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1138484 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28115 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28482 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28487 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28489 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28493 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28494 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28496 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28502 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28504 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28506 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28507 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28510 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28511 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28512 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28513 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28514 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28515 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28516 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28517 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28519 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28522 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28523 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28527 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28529 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28539 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28542 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28543 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28547 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28551 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28552 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28556 < new pts 28561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28560 + pts count: 1 = new pts: 28561. update pts: 28558 < new pts 28561, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1139617 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28115 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28482 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28487 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28489 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28493 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28494 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28496 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28502 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28504 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28506 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28507 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28510 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28511 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28512 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28513 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28514 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28515 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28516 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28517 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28519 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28522 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28523 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28527 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28529 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28539 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28542 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28543 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28547 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28551 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28552 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28556 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28558 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28561 < new pts 28562, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1140321 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28115 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28482 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28487 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28489 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28493 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28494 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28496 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28502 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28504 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28506 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28507 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28510 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28511 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28512 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28513 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28514 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28515 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28516 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28517 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28519 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28522 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28523 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28527 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28529 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28539 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28542 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28543 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28547 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28551 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28552 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28556 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28558 < new pts 28562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28561 + pts count: 1 = new pts: 28562. update pts: 28561 < new pts 28562, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1141887 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28115 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28482 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28487 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28489 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28493 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28494 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28496 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28502 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28504 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28506 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28507 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28510 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28511 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28512 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28513 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28514 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28515 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28516 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28517 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28519 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28522 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28523 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28527 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28529 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28539 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28542 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28543 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28547 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28551 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28552 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28556 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28558 < new pts 28563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28562 + pts count: 1 = new pts: 28563. update pts: 28561 < new pts 28563, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1142713 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28115 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28482 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28487 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28489 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28493 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28494 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28496 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28502 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28504 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28506 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28507 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28510 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28511 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28512 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28513 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28514 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28515 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28516 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28517 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28519 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28522 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28523 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28527 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28529 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28539 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28542 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28543 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28547 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28551 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28552 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28556 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28558 < new pts 28564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28563 + pts count: 1 = new pts: 28564. update pts: 28561 < new pts 28564, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1144564 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28115 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28482 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28487 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28489 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28493 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28494 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28496 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28502 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28504 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28506 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28507 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28510 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28511 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28512 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28513 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28514 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28515 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28516 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28517 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28519 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28522 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28523 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28527 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28529 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28539 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28542 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28543 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28547 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28551 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28552 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28556 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28558 < new pts 28565, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28564 + pts count: 1 = new pts: 28565. update pts: 28561 < new pts 28565, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1143290 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28115 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28482 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28487 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28489 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28493 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28494 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28496 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28502 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28504 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28506 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28507 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28510 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28511 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28512 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28513 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28514 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28515 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28516 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28517 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28519 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28522 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28523 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28527 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28529 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28539 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28542 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28543 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28547 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28551 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28552 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28556 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28558 < new pts 28566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28565 + pts count: 1 = new pts: 28566. update pts: 28561 < new pts 28566, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1147544 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28115 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28482 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28487 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28489 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28493 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28494 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28496 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28502 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28504 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28506 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28507 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28510 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28511 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28512 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28513 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28514 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28515 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28516 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28517 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28519 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28522 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28523 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28527 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28529 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28539 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28542 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28543 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28547 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28551 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28552 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28556 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28558 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28561 < new pts 28568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28567 + pts count: 1 = new pts: 28568. update pts: 28567 < new pts 28568, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1154037 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28115 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28482 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28487 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28489 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28493 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28494 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28496 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28502 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28504 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28506 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28507 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28510 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28511 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28512 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28513 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28514 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28515 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28516 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28517 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28519 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28522 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28523 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28527 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28529 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28539 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28542 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28543 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28547 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28551 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28552 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28556 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28558 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28561 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28567 < new pts 28569, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1150065 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28115 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28482 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28487 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28489 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28493 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28494 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28496 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28502 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28504 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28506 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28507 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28510 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28511 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28512 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28513 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28514 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28515 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28516 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28517 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28519 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28522 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28523 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28527 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28529 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28539 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28542 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28543 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28547 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28551 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28552 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28556 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28558 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28561 < new pts 28569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28568 + pts count: 1 = new pts: 28569. update pts: 28567 < new pts 28569, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1150891 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28115 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28482 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28487 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28489 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28493 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28494 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28496 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28502 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28504 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28506 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28507 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28510 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28511 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28512 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28513 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28514 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28515 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28516 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28517 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28519 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28522 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28523 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28527 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28529 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28539 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28542 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28543 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28547 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28551 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28552 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28556 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28558 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28561 < new pts 28570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28569 + pts count: 1 = new pts: 28570. update pts: 28567 < new pts 28570, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1155303 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28115 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28482 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28487 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28489 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28493 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28494 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28496 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28502 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28504 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28506 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28507 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28510 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28511 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28512 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28513 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28514 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28515 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28516 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28517 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28519 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28522 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28523 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28527 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28529 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28539 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28542 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28543 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28547 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28551 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28552 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28556 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28558 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28561 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28567 < new pts 28572, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1151551 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28115 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28482 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28487 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28489 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28493 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28494 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28496 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28502 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28504 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28506 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28507 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28510 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28511 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28512 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28513 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28514 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28515 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28516 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28517 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28519 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28522 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28523 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28527 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28529 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28539 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28542 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28543 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28547 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28551 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28552 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28556 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28558 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28561 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28571 + pts count: 1 = new pts: 28572. update pts: 28567 < new pts 28572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28571 + pts count: 1 = new pts: 28572, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1157206 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28115 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28482 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28487 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28489 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28493 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28494 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28496 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28502 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28504 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28506 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28507 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28510 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28511 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28512 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28513 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28514 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28515 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28516 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28517 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28519 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28522 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28523 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28527 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28529 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28539 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28542 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28543 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28547 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28551 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28552 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28556 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28558 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28561 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28567 < new pts 28573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28572 + pts count: 1 = new pts: 28573. update pts: 28572 < new pts 28573, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1157121 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28115 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28482 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28487 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28489 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28493 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28494 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28496 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28502 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28504 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28506 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28507 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28510 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28511 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28512 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28513 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28514 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28515 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28516 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28517 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28519 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28522 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28523 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28527 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28529 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28539 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28542 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28543 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28547 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28551 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28552 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28556 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28558 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28561 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28567 < new pts 28575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28574 + pts count: 1 = new pts: 28575. update pts: 28572 < new pts 28575, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1160948 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28115 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28482 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28487 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28489 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28493 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28494 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28496 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28502 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28504 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28506 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28507 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28510 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28511 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28512 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28513 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28514 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28515 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28516 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28517 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28519 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28522 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28523 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28527 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28529 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28539 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28542 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28543 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28547 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28551 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28552 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28556 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28558 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28561 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28567 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28572 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28575 < new pts 28576, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1166102 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28115 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28482 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28487 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28489 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28493 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28494 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28496 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28502 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28504 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28506 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28507 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28510 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28511 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28512 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28513 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28514 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28515 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28516 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28517 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28519 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28522 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28523 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28527 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28529 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28539 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28542 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28543 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28547 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28551 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28552 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28556 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28558 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28561 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28567 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28572 < new pts 28576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28575 + pts count: 1 = new pts: 28576. update pts: 28575 < new pts 28576, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1166003 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28115 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28482 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28487 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28489 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28493 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28494 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28496 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28502 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28504 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28506 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28507 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28510 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28511 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28512 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28513 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28514 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28515 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28516 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28517 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28519 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28522 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28523 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28527 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28529 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28539 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28542 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28543 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28547 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28551 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28552 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28556 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28558 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28561 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28567 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28572 < new pts 28578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28577 + pts count: 1 = new pts: 28578. update pts: 28575 < new pts 28578, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1167855 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28115 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28482 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28487 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28489 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28493 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28494 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28496 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28502 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28504 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28506 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28507 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28510 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28511 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28512 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28513 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28514 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28515 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28516 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28517 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28519 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28522 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28523 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28527 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28529 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28539 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28542 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28543 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28547 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28551 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28552 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28556 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28558 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28561 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28567 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28572 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28575 < new pts 28579, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28578 + pts count: 1 = new pts: 28579. update pts: 28578 < new pts 28579, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1175200 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28115 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28482 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28487 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28489 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28493 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28494 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28496 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28502 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28504 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28506 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28507 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28510 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28511 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28512 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28513 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28514 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28515 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28516 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28517 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28519 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28522 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28523 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28527 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28529 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28539 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28542 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28543 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28547 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28551 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28552 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28556 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28558 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28561 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28567 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28572 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28575 < new pts 28580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28579 + pts count: 1 = new pts: 28580. update pts: 28578 < new pts 28580, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1176748 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28115 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28482 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28487 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28489 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28493 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28494 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28496 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28502 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28504 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28506 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28507 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28510 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28511 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28512 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28513 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28514 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28515 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28516 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28517 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28519 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28522 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28523 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28527 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28529 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28539 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28542 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28543 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28547 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28551 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28552 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28556 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28558 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28561 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28567 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28572 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28575 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28578 < new pts 28581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28580 + pts count: 1 = new pts: 28581. update pts: 28580 < new pts 28581, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1185211 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28115 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28482 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28487 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28489 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28493 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28494 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28496 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28502 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28504 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28506 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28507 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28510 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28511 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28512 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28513 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28514 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28515 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28516 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28517 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28519 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28522 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28523 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28527 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28529 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28539 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28542 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28543 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28547 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28551 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28552 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28556 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28558 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28561 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28567 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28572 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28575 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28578 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28580 < new pts 28582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28581 + pts count: 1 = new pts: 28582. update pts: 28581 < new pts 28582, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1193433 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28115 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28482 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28487 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28489 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28493 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28494 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28496 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28502 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28504 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28506 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28507 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28510 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28511 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28512 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28513 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28514 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28515 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28516 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28517 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28519 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28522 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28523 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28527 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28529 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28539 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28542 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28543 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28547 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28551 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28552 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28556 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28558 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28561 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28567 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28572 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28575 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28578 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28580 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28581 < new pts 28583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28582 + pts count: 1 = new pts: 28583. update pts: 28582 < new pts 28583, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1191384 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShortChatMessage. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28115 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28482 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28487 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28489 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28493 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28494 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28496 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28502 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28504 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28506 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28507 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28510 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28511 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28512 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28513 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28514 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28515 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28516 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28517 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28519 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28522 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28523 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28527 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28529 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28539 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28542 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28543 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28547 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28551 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28552 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28556 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28558 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28561 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28567 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28572 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28575 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28578 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28580 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28581 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28582 < new pts 28584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28583 + pts count: 1 = new pts: 28584. update pts: 28583 < new pts 28584, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1190748 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28115 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28482 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28487 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28489 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28493 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28494 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28496 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28502 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28504 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28506 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28507 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28510 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28511 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28512 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28513 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28514 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28515 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28516 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28517 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28519 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28522 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28523 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28527 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28529 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28539 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28542 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28543 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28547 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28551 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28552 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28556 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28558 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28561 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28567 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28572 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28575 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28578 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28580 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28581 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28582 < new pts 28586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28585 + pts count: 1 = new pts: 28586. update pts: 28583 < new pts 28586, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1192378 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28115 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28482 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28487 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28489 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28493 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28494 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28496 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28502 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28504 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28506 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28507 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28510 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28511 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28512 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28513 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28514 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28515 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28516 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28517 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28519 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28522 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28523 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28527 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28529 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28539 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28542 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28543 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28547 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28551 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28552 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28556 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28558 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28561 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28567 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28572 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28575 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28578 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28580 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28581 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28582 < new pts 28587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28586 + pts count: 1 = new pts: 28587. update pts: 28583 < new pts 28587, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1196211 bytes -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -Deserializing MadelineProto from calls.madeline... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28592 + pts count: 1 = new pts: 28593, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28593 + pts count: 1 = new pts: 28594, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28592 + pts count: 1 = new pts: 28593. update pts: 28115 < new pts 28593, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28594 + pts count: 1 = new pts: 28595. update pts: 28115 < new pts 28595, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 639621 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 640920 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28594 + pts count: 1 = new pts: 28595. update pts: 28115 < new pts 28595, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28594 + pts count: 1 = new pts: 28595, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28595 + pts count: 1 = new pts: 28596. update pts: 28115 < new pts 28596, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 651654 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 647761 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28595, pts count: 1, new pts: 28596 < update pts: 28598, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28595 + pts count: 1 = new pts: 28596. update pts: 28115 < new pts 28596, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28598 + pts count: 1 = new pts: 28599. update pts: 28115 < new pts 28599, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 661243 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28598 + pts count: 1 = new pts: 28599, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28599 + pts count: 1 = new pts: 28600, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 662933 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28600 + pts count: 1 = new pts: 28601. update pts: 28115 < new pts 28601, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 670853 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28600 + pts count: 1 = new pts: 28601. update pts: 28115 < new pts 28601, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 675208 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28601 + pts count: 1 = new pts: 28602. update pts: 28115 < new pts 28602, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 681548 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28604 + pts count: 1 = new pts: 28605. update pts: 28115 < new pts 28605, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28604 + pts count: 1 = new pts: 28605, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28605, pts count: 1, new pts: 28606 < update pts: 28608, channel id: -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28605, pts count: 1, new pts: 28606 < update pts: 28609, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 690947 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28609 + pts count: 1 = new pts: 28610. update pts: 28115 < new pts 28610, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28608 + pts count: 1 = new pts: 28609. update pts: 28115 < new pts 28609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28608 + pts count: 1 = new pts: 28609. update pts: 28605 < new pts 28609, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 703545 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28610, pts count: 1, new pts: 28611 < update pts: 28612, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 702112 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28612 + pts count: 1 = new pts: 28613. update pts: 28115 < new pts 28613, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28612 + pts count: 1 = new pts: 28613. update pts: 28611 < new pts 28613, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28612 + pts count: 1 = new pts: 28613. update pts: 28115 < new pts 28613, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28612 + pts count: 1 = new pts: 28613. update pts: 28605 < new pts 28613, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 722229 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 712453 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28614, pts count: 1, new pts: 28615 < update pts: 28616, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28615, pts count: 1, new pts: 28616 < update pts: 28617, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28618 + pts count: 1 = new pts: 28619. update pts: 28115 < new pts 28619, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28618 + pts count: 1 = new pts: 28619. update pts: 28611 < new pts 28619, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28618 + pts count: 1 = new pts: 28619. update pts: 28115 < new pts 28619, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28618 + pts count: 1 = new pts: 28619. update pts: 28605 < new pts 28619, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 736380 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 733192 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28618 + pts count: 1 = new pts: 28619. update pts: 28115 < new pts 28619, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28618 + pts count: 1 = new pts: 28619. update pts: 28611 < new pts 28619, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28618 + pts count: 1 = new pts: 28619, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28619 + pts count: 1 = new pts: 28620, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28620 + pts count: 1 = new pts: 28621. update pts: 28115 < new pts 28621, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28620 + pts count: 1 = new pts: 28621. update pts: 28605 < new pts 28621, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 750631 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28622, pts count: 1, new pts: 28623 < update pts: 28624, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 741821 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28623, pts count: 1, new pts: 28624 < update pts: 28626, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28625 + pts count: 1 = new pts: 28626. update pts: 28115 < new pts 28626, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28625 + pts count: 1 = new pts: 28626. update pts: 28611 < new pts 28626, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28625 + pts count: 1 = new pts: 28626. update pts: 28619 < new pts 28626, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28625 + pts count: 1 = new pts: 28626. update pts: 28620 < new pts 28626, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28625 + pts count: 1 = new pts: 28626. update pts: 28623 < new pts 28626, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28626 + pts count: 1 = new pts: 28627. update pts: 28115 < new pts 28627, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28626 + pts count: 1 = new pts: 28627. update pts: 28605 < new pts 28627, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 767090 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 758375 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShortMessage. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28626, pts count: 1, new pts: 28627 < update pts: 28630, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28626 + pts count: 1 = new pts: 28627. update pts: 28115 < new pts 28627, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28626 + pts count: 1 = new pts: 28627. update pts: 28611 < new pts 28627, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28626 + pts count: 1 = new pts: 28627. update pts: 28619 < new pts 28627, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28626 + pts count: 1 = new pts: 28627. update pts: 28620 < new pts 28627, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28626 + pts count: 1 = new pts: 28627. update pts: 28623 < new pts 28627, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28631 + pts count: 1 = new pts: 28632. update pts: 28115 < new pts 28632, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28631 + pts count: 1 = new pts: 28632. update pts: 28605 < new pts 28632, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28631 + pts count: 1 = new pts: 28632. update pts: 28627 < new pts 28632, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 781058 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Deserializing MadelineProto from calls.madeline... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -Wrote 789106 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 265379... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28632 + pts count: 1 = new pts: 28633. update pts: 28115 < new pts 28633, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28632 + pts count: 1 = new pts: 28633. update pts: 28611 < new pts 28633, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28632 + pts count: 1 = new pts: 28633. update pts: 28619 < new pts 28633, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28632 + pts count: 1 = new pts: 28633. update pts: 28620 < new pts 28633, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28632 + pts count: 1 = new pts: 28633. update pts: 28623 < new pts 28633, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -PHP Fatal error: Uncaught danog\MadelineProto\RPCErrorException: PARTICIPANT_VERSION_OUTDATED in /home/pwrtelegram/repos/repos/MadelineProto/src/danog/MadelineProto/MTProtoTools/CallHandler.php:106 -Stack trace: -#0 /home/pwrtelegram/repos/repos/MadelineProto/src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php(566): danog\MadelineProto\MTProto->method_call('phone.requestCa...', Array) -#1 /home/pwrtelegram/repos/repos/MadelineProto/src/danog/MadelineProto/APIFactory.php(97): danog\MadelineProto\MTProto->request_call(Array) -#2 /home/pwrtelegram/repos/repos/MadelineProto/calls.php(67): danog\MadelineProto\APIFactory->__call('request_call', Array) -#3 {main} - thrown in /home/pwrtelegram/repos/repos/MadelineProto/src/danog/MadelineProto/MTProtoTools/CallHandler.php on line 106 -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28634, pts count: 1, new pts: 28635 < update pts: 28636, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28638 + pts count: 1 = new pts: 28639, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28639 + pts count: 1 = new pts: 28640, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28640 + pts count: 1 = new pts: 28641. update pts: 28115 < new pts 28641, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28640 + pts count: 1 = new pts: 28641. update pts: 28605 < new pts 28641, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28640 + pts count: 1 = new pts: 28641. update pts: 28627 < new pts 28641, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28640 + pts count: 1 = new pts: 28641. update pts: 28635 < new pts 28641, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 792065 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 811454 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28637 + pts count: 1 = new pts: 28638. update pts: 28115 < new pts 28638, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28637 + pts count: 1 = new pts: 28638. update pts: 28611 < new pts 28638, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28637 + pts count: 1 = new pts: 28638. update pts: 28619 < new pts 28638, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28637 + pts count: 1 = new pts: 28638. update pts: 28620 < new pts 28638, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28637 + pts count: 1 = new pts: 28638. update pts: 28623 < new pts 28638, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28640 + pts count: 1 = new pts: 28641. update pts: 28115 < new pts 28641, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28640 + pts count: 1 = new pts: 28641. update pts: 28605 < new pts 28641, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28640 + pts count: 1 = new pts: 28641. update pts: 28627 < new pts 28641, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28640 + pts count: 1 = new pts: 28641. update pts: 28635 < new pts 28641, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 801665 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 827559 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28643 + pts count: 1 = new pts: 28644, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28644 + pts count: 1 = new pts: 28645, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28645 + pts count: 1 = new pts: 28646, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28642 + pts count: 1 = new pts: 28643. update pts: 28115 < new pts 28643, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28642 + pts count: 1 = new pts: 28643. update pts: 28611 < new pts 28643, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28642 + pts count: 1 = new pts: 28643. update pts: 28619 < new pts 28643, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28642 + pts count: 1 = new pts: 28643. update pts: 28620 < new pts 28643, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28642 + pts count: 1 = new pts: 28643. update pts: 28623 < new pts 28643, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28646 + pts count: 1 = new pts: 28647. update pts: 28115 < new pts 28647, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28646 + pts count: 1 = new pts: 28647. update pts: 28605 < new pts 28647, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28646 + pts count: 1 = new pts: 28647. update pts: 28627 < new pts 28647, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28646 + pts count: 1 = new pts: 28647. update pts: 28635 < new pts 28647, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 812376 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 842966 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28646 + pts count: 1 = new pts: 28647. update pts: 28115 < new pts 28647, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28646 + pts count: 1 = new pts: 28647. update pts: 28611 < new pts 28647, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28646 + pts count: 1 = new pts: 28647. update pts: 28619 < new pts 28647, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28646 + pts count: 1 = new pts: 28647. update pts: 28620 < new pts 28647, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28646 + pts count: 1 = new pts: 28647. update pts: 28623 < new pts 28647, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28647 + pts count: 1 = new pts: 28648. update pts: 28115 < new pts 28648, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28647 + pts count: 1 = new pts: 28648. update pts: 28605 < new pts 28648, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28647 + pts count: 1 = new pts: 28648. update pts: 28627 < new pts 28648, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28647 + pts count: 1 = new pts: 28648. update pts: 28635 < new pts 28648, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 818860 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 848578 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28647 + pts count: 1 = new pts: 28648, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28648 + pts count: 1 = new pts: 28649, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28647, pts count: 1, new pts: 28648 < update pts: 28650, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28647, pts count: 1, new pts: 28648 < update pts: 28651, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28649 + pts count: 1 = new pts: 28650. update pts: 28115 < new pts 28650, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28649 + pts count: 1 = new pts: 28650. update pts: 28605 < new pts 28650, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28649 + pts count: 1 = new pts: 28650. update pts: 28627 < new pts 28650, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28649 + pts count: 1 = new pts: 28650. update pts: 28635 < new pts 28650, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28652 + pts count: 1 = new pts: 28653. update pts: 28115 < new pts 28653, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28652 + pts count: 1 = new pts: 28653. update pts: 28611 < new pts 28653, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28652 + pts count: 1 = new pts: 28653. update pts: 28619 < new pts 28653, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28652 + pts count: 1 = new pts: 28653. update pts: 28620 < new pts 28653, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28652 + pts count: 1 = new pts: 28653. update pts: 28623 < new pts 28653, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 862666 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 850793 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28652 + pts count: 1 = new pts: 28653, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28653 + pts count: 1 = new pts: 28654, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28654 + pts count: 1 = new pts: 28655, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28655 + pts count: 1 = new pts: 28656, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28656 + pts count: 1 = new pts: 28657, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28657 + pts count: 1 = new pts: 28658. update pts: 28115 < new pts 28658, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28657 + pts count: 1 = new pts: 28658. update pts: 28611 < new pts 28658, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28657 + pts count: 1 = new pts: 28658. update pts: 28619 < new pts 28658, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28657 + pts count: 1 = new pts: 28658. update pts: 28620 < new pts 28658, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28657 + pts count: 1 = new pts: 28658. update pts: 28623 < new pts 28658, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28652 + pts count: 1 = new pts: 28653. update pts: 28115 < new pts 28653, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28652 + pts count: 1 = new pts: 28653. update pts: 28605 < new pts 28653, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28652 + pts count: 1 = new pts: 28653. update pts: 28627 < new pts 28653, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28652 + pts count: 1 = new pts: 28653. update pts: 28635 < new pts 28653, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 866512 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -Wrote 873523 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28657 + pts count: 1 = new pts: 28658. update pts: 28115 < new pts 28658, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28657 + pts count: 1 = new pts: 28658. update pts: 28611 < new pts 28658, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28657 + pts count: 1 = new pts: 28658. update pts: 28619 < new pts 28658, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28657 + pts count: 1 = new pts: 28658. update pts: 28620 < new pts 28658, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28657 + pts count: 1 = new pts: 28658. update pts: 28623 < new pts 28658, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28657 + pts count: 1 = new pts: 28658, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28658 + pts count: 1 = new pts: 28659, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28659 + pts count: 1 = new pts: 28660, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28660 + pts count: 1 = new pts: 28661. update pts: 28115 < new pts 28661, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28660 + pts count: 1 = new pts: 28661. update pts: 28605 < new pts 28661, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28660 + pts count: 1 = new pts: 28661. update pts: 28627 < new pts 28661, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28660 + pts count: 1 = new pts: 28661. update pts: 28635 < new pts 28661, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28660 + pts count: 1 = new pts: 28661, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28661 + pts count: 1 = new pts: 28662, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28662 + pts count: 1 = new pts: 28663, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 881807 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 885936 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28663 + pts count: 1 = new pts: 28664, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28664 + pts count: 1 = new pts: 28665, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28665 + pts count: 1 = new pts: 28666. update pts: 28115 < new pts 28666, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28665 + pts count: 1 = new pts: 28666. update pts: 28611 < new pts 28666, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28665 + pts count: 1 = new pts: 28666. update pts: 28619 < new pts 28666, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28665 + pts count: 1 = new pts: 28666. update pts: 28620 < new pts 28666, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28665 + pts count: 1 = new pts: 28666. update pts: 28623 < new pts 28666, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28665 + pts count: 1 = new pts: 28666. update pts: 28658 < new pts 28666, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28665 + pts count: 1 = new pts: 28666. update pts: 28659 < new pts 28666, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28665 + pts count: 1 = new pts: 28666. update pts: 28660 < new pts 28666, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28663 + pts count: 1 = new pts: 28664. update pts: 28115 < new pts 28664, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28663 + pts count: 1 = new pts: 28664. update pts: 28605 < new pts 28664, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28663 + pts count: 1 = new pts: 28664. update pts: 28627 < new pts 28664, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28663 + pts count: 1 = new pts: 28664. update pts: 28635 < new pts 28664, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28663 + pts count: 1 = new pts: 28664. update pts: 28661 < new pts 28664, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28663 + pts count: 1 = new pts: 28664. update pts: 28662 < new pts 28664, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28663 + pts count: 1 = new pts: 28664. update pts: 28663 < new pts 28664, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 898337 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 904256 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28668 + pts count: 1 = new pts: 28669. update pts: 28115 < new pts 28669, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28668 + pts count: 1 = new pts: 28669. update pts: 28611 < new pts 28669, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28668 + pts count: 1 = new pts: 28669. update pts: 28619 < new pts 28669, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28668 + pts count: 1 = new pts: 28669. update pts: 28620 < new pts 28669, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28668 + pts count: 1 = new pts: 28669. update pts: 28623 < new pts 28669, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28668 + pts count: 1 = new pts: 28669. update pts: 28658 < new pts 28669, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28668 + pts count: 1 = new pts: 28669. update pts: 28659 < new pts 28669, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28668 + pts count: 1 = new pts: 28669. update pts: 28660 < new pts 28669, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28669 + pts count: 1 = new pts: 28670. update pts: 28115 < new pts 28670, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28669 + pts count: 1 = new pts: 28670. update pts: 28605 < new pts 28670, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28669 + pts count: 1 = new pts: 28670. update pts: 28627 < new pts 28670, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28669 + pts count: 1 = new pts: 28670. update pts: 28635 < new pts 28670, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28669 + pts count: 1 = new pts: 28670. update pts: 28661 < new pts 28670, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28669 + pts count: 1 = new pts: 28670. update pts: 28662 < new pts 28670, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28669 + pts count: 1 = new pts: 28670. update pts: 28663 < new pts 28670, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 909178 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Generating g_a... -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 915113 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28674, pts count: 1, new pts: 28675 < update pts: 28676, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28674 + pts count: 1 = new pts: 28675. update pts: 28115 < new pts 28675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28674 + pts count: 1 = new pts: 28675. update pts: 28611 < new pts 28675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28674 + pts count: 1 = new pts: 28675. update pts: 28619 < new pts 28675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28674 + pts count: 1 = new pts: 28675. update pts: 28620 < new pts 28675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28674 + pts count: 1 = new pts: 28675. update pts: 28623 < new pts 28675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28674 + pts count: 1 = new pts: 28675. update pts: 28658 < new pts 28675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28674 + pts count: 1 = new pts: 28675. update pts: 28659 < new pts 28675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28674 + pts count: 1 = new pts: 28675. update pts: 28660 < new pts 28675, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28677 < new pts 28678, channel id: -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28115 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28605 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28627 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28635 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28661 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28662 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28663 < new pts 28678, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 913642 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 922426 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28115 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28611 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28619 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28620 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28623 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28658 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28659 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28660 < new pts 28678, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28115 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28605 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28627 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28635 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28661 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28662 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28663 < new pts 28678, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 925970 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 927467 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28115 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28605 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28627 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28635 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28661 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28662 < new pts 28678, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28677 + pts count: 1 = new pts: 28678. update pts: 28663 < new pts 28678, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28679 + pts count: 1 = new pts: 28680. update pts: 28115 < new pts 28680, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28679 + pts count: 1 = new pts: 28680. update pts: 28611 < new pts 28680, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28679 + pts count: 1 = new pts: 28680. update pts: 28619 < new pts 28680, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28679 + pts count: 1 = new pts: 28680. update pts: 28620 < new pts 28680, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28679 + pts count: 1 = new pts: 28680. update pts: 28623 < new pts 28680, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28679 + pts count: 1 = new pts: 28680. update pts: 28658 < new pts 28680, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28679 + pts count: 1 = new pts: 28680. update pts: 28659 < new pts 28680, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28679 + pts count: 1 = new pts: 28680. update pts: 28660 < new pts 28680, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 934415 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 934568 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28680 + pts count: 1 = new pts: 28681. update pts: 28115 < new pts 28681, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28680 + pts count: 1 = new pts: 28681. update pts: 28605 < new pts 28681, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28680 + pts count: 1 = new pts: 28681. update pts: 28627 < new pts 28681, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28680 + pts count: 1 = new pts: 28681. update pts: 28635 < new pts 28681, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28680 + pts count: 1 = new pts: 28681. update pts: 28661 < new pts 28681, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28680 + pts count: 1 = new pts: 28681. update pts: 28662 < new pts 28681, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28680 + pts count: 1 = new pts: 28681. update pts: 28663 < new pts 28681, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28681 + pts count: 1 = new pts: 28682. update pts: 28115 < new pts 28682, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28681 + pts count: 1 = new pts: 28682. update pts: 28611 < new pts 28682, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28681 + pts count: 1 = new pts: 28682. update pts: 28619 < new pts 28682, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28681 + pts count: 1 = new pts: 28682. update pts: 28620 < new pts 28682, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28681 + pts count: 1 = new pts: 28682. update pts: 28623 < new pts 28682, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28681 + pts count: 1 = new pts: 28682. update pts: 28658 < new pts 28682, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28681 + pts count: 1 = new pts: 28682. update pts: 28659 < new pts 28682, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28681 + pts count: 1 = new pts: 28682. update pts: 28660 < new pts 28682, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 943617 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28685 + pts count: 1 = new pts: 28686, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 944829 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28686 + pts count: 1 = new pts: 28687. update pts: 28115 < new pts 28687, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28686 + pts count: 1 = new pts: 28687. update pts: 28605 < new pts 28687, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28686 + pts count: 1 = new pts: 28687. update pts: 28627 < new pts 28687, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28686 + pts count: 1 = new pts: 28687. update pts: 28635 < new pts 28687, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28686 + pts count: 1 = new pts: 28687. update pts: 28661 < new pts 28687, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28686 + pts count: 1 = new pts: 28687. update pts: 28662 < new pts 28687, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28686 + pts count: 1 = new pts: 28687. update pts: 28663 < new pts 28687, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 953437 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28686 + pts count: 1 = new pts: 28687. update pts: 28115 < new pts 28687, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28686 + pts count: 1 = new pts: 28687. update pts: 28611 < new pts 28687, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28686 + pts count: 1 = new pts: 28687. update pts: 28619 < new pts 28687, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28686 + pts count: 1 = new pts: 28687. update pts: 28620 < new pts 28687, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28686 + pts count: 1 = new pts: 28687. update pts: 28623 < new pts 28687, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28686 + pts count: 1 = new pts: 28687. update pts: 28658 < new pts 28687, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28686 + pts count: 1 = new pts: 28687. update pts: 28659 < new pts 28687, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28686 + pts count: 1 = new pts: 28687. update pts: 28660 < new pts 28687, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28686, pts count: 1, new pts: 28687 < update pts: 28690, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28688, pts count: 1, new pts: 28689 < update pts: 28691, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28691 + pts count: 1 = new pts: 28692. update pts: 28115 < new pts 28692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28691 + pts count: 1 = new pts: 28692. update pts: 28605 < new pts 28692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28691 + pts count: 1 = new pts: 28692. update pts: 28627 < new pts 28692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28691 + pts count: 1 = new pts: 28692. update pts: 28635 < new pts 28692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28691 + pts count: 1 = new pts: 28692. update pts: 28661 < new pts 28692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28691 + pts count: 1 = new pts: 28692. update pts: 28662 < new pts 28692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28691 + pts count: 1 = new pts: 28692. update pts: 28663 < new pts 28692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28691 + pts count: 1 = new pts: 28692. update pts: 28689 < new pts 28692, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 959684 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 968515 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28691 + pts count: 1 = new pts: 28692. update pts: 28115 < new pts 28692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28691 + pts count: 1 = new pts: 28692. update pts: 28611 < new pts 28692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28691 + pts count: 1 = new pts: 28692. update pts: 28619 < new pts 28692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28691 + pts count: 1 = new pts: 28692. update pts: 28620 < new pts 28692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28691 + pts count: 1 = new pts: 28692. update pts: 28623 < new pts 28692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28691 + pts count: 1 = new pts: 28692. update pts: 28658 < new pts 28692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28691 + pts count: 1 = new pts: 28692. update pts: 28659 < new pts 28692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28691 + pts count: 1 = new pts: 28692. update pts: 28660 < new pts 28692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28691 + pts count: 1 = new pts: 28692, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28693 + pts count: 1 = new pts: 28694. update pts: 28115 < new pts 28694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28693 + pts count: 1 = new pts: 28694. update pts: 28605 < new pts 28694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28693 + pts count: 1 = new pts: 28694. update pts: 28627 < new pts 28694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28693 + pts count: 1 = new pts: 28694. update pts: 28635 < new pts 28694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28693 + pts count: 1 = new pts: 28694. update pts: 28661 < new pts 28694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28693 + pts count: 1 = new pts: 28694. update pts: 28662 < new pts 28694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28693 + pts count: 1 = new pts: 28694. update pts: 28663 < new pts 28694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28693 + pts count: 1 = new pts: 28694. update pts: 28689 < new pts 28694, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 966957 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 973077 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28694, pts count: 1, new pts: 28695 < update pts: 28697, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28694 + pts count: 1 = new pts: 28695. update pts: 28115 < new pts 28695, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28694 + pts count: 1 = new pts: 28695. update pts: 28611 < new pts 28695, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28694 + pts count: 1 = new pts: 28695. update pts: 28619 < new pts 28695, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28694 + pts count: 1 = new pts: 28695. update pts: 28620 < new pts 28695, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28694 + pts count: 1 = new pts: 28695. update pts: 28623 < new pts 28695, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28694 + pts count: 1 = new pts: 28695. update pts: 28658 < new pts 28695, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28694 + pts count: 1 = new pts: 28695. update pts: 28659 < new pts 28695, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28694 + pts count: 1 = new pts: 28695. update pts: 28660 < new pts 28695, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28694 + pts count: 1 = new pts: 28695. update pts: 28692 < new pts 28695, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28698 + pts count: 1 = new pts: 28699. update pts: 28115 < new pts 28699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28698 + pts count: 1 = new pts: 28699. update pts: 28605 < new pts 28699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28698 + pts count: 1 = new pts: 28699. update pts: 28627 < new pts 28699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28698 + pts count: 1 = new pts: 28699. update pts: 28635 < new pts 28699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28698 + pts count: 1 = new pts: 28699. update pts: 28661 < new pts 28699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28698 + pts count: 1 = new pts: 28699. update pts: 28662 < new pts 28699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28698 + pts count: 1 = new pts: 28699. update pts: 28663 < new pts 28699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28698 + pts count: 1 = new pts: 28699. update pts: 28689 < new pts 28699, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 982946 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28699, pts count: 1, new pts: 28700 < update pts: 28701, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28699, pts count: 1, new pts: 28700 < update pts: 28702, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28699, pts count: 1, new pts: 28700 < update pts: 28703, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28699, pts count: 1, new pts: 28700 < update pts: 28704, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 999562 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28704 + pts count: 1 = new pts: 28705. update pts: 28115 < new pts 28705, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28704 + pts count: 1 = new pts: 28705. update pts: 28611 < new pts 28705, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28704 + pts count: 1 = new pts: 28705. update pts: 28619 < new pts 28705, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28704 + pts count: 1 = new pts: 28705. update pts: 28620 < new pts 28705, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28704 + pts count: 1 = new pts: 28705. update pts: 28623 < new pts 28705, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28704 + pts count: 1 = new pts: 28705. update pts: 28658 < new pts 28705, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28704 + pts count: 1 = new pts: 28705. update pts: 28659 < new pts 28705, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28704 + pts count: 1 = new pts: 28705. update pts: 28660 < new pts 28705, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28704 + pts count: 1 = new pts: 28705. update pts: 28692 < new pts 28705, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28704, pts count: 1, new pts: 28705 < update pts: 28706, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28701 + pts count: 1 = new pts: 28702. update pts: 28115 < new pts 28702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28701 + pts count: 1 = new pts: 28702. update pts: 28605 < new pts 28702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28701 + pts count: 1 = new pts: 28702. update pts: 28627 < new pts 28702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28701 + pts count: 1 = new pts: 28702. update pts: 28635 < new pts 28702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28701 + pts count: 1 = new pts: 28702. update pts: 28661 < new pts 28702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28701 + pts count: 1 = new pts: 28702. update pts: 28662 < new pts 28702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28701 + pts count: 1 = new pts: 28702. update pts: 28663 < new pts 28702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28701 + pts count: 1 = new pts: 28702. update pts: 28689 < new pts 28702, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28701, pts count: 1, new pts: 28702 < update pts: 28707, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1013389 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1011293 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28115 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28611 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28619 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28620 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28623 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28658 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28659 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28660 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28692 < new pts 28708, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28115 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28605 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28627 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28635 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28661 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28662 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28663 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28689 < new pts 28708, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1013091 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1014952 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28707 + pts count: 1 = new pts: 28708, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28708 + pts count: 1 = new pts: 28709, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28709 + pts count: 1 = new pts: 28710, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28115 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28611 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28619 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28620 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28623 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28658 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28659 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28660 < new pts 28708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28707 + pts count: 1 = new pts: 28708. update pts: 28692 < new pts 28708, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28115 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28605 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28627 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28635 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28661 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28662 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28663 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28689 < new pts 28711, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1019830 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1017572 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28115 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28611 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28619 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28620 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28623 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28658 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28659 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28660 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28692 < new pts 28711, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28115 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28605 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28627 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28635 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28661 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28662 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28663 < new pts 28711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28710 + pts count: 1 = new pts: 28711. update pts: 28689 < new pts 28711, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1020603 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28710, pts count: 1, new pts: 28711 < update pts: 28714, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28115 < new pts 28715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28611 < new pts 28715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28619 < new pts 28715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28620 < new pts 28715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28623 < new pts 28715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28658 < new pts 28715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28659 < new pts 28715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28660 < new pts 28715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28692 < new pts 28715, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1026075 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1026222 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28714 + pts count: 1 = new pts: 28715, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28715 + pts count: 1 = new pts: 28716. update pts: 28115 < new pts 28716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28715 + pts count: 1 = new pts: 28716. update pts: 28605 < new pts 28716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28715 + pts count: 1 = new pts: 28716. update pts: 28627 < new pts 28716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28715 + pts count: 1 = new pts: 28716. update pts: 28635 < new pts 28716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28715 + pts count: 1 = new pts: 28716. update pts: 28661 < new pts 28716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28715 + pts count: 1 = new pts: 28716. update pts: 28662 < new pts 28716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28715 + pts count: 1 = new pts: 28716. update pts: 28663 < new pts 28716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28715 + pts count: 1 = new pts: 28716. update pts: 28689 < new pts 28716, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28115 < new pts 28715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28611 < new pts 28715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28619 < new pts 28715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28620 < new pts 28715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28623 < new pts 28715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28658 < new pts 28715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28659 < new pts 28715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28660 < new pts 28715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28714 + pts count: 1 = new pts: 28715. update pts: 28692 < new pts 28715, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1026095 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -UpdateHandler, danogentili: Got updates.difference -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1031056 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28715, pts count: 1, new pts: 28716 < update pts: 28717, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28717 + pts count: 1 = new pts: 28718. update pts: 28115 < new pts 28718, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28717 + pts count: 1 = new pts: 28718. update pts: 28605 < new pts 28718, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28717 + pts count: 1 = new pts: 28718. update pts: 28627 < new pts 28718, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28717 + pts count: 1 = new pts: 28718. update pts: 28635 < new pts 28718, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28717 + pts count: 1 = new pts: 28718. update pts: 28661 < new pts 28718, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28717 + pts count: 1 = new pts: 28718. update pts: 28662 < new pts 28718, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28717 + pts count: 1 = new pts: 28718. update pts: 28663 < new pts 28718, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28717 + pts count: 1 = new pts: 28718. update pts: 28689 < new pts 28718, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Applying pts. current pts: 28717 + pts count: 1 = new pts: 28718, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28716 + pts count: 1 = new pts: 28717. update pts: 28115 < new pts 28717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28716 + pts count: 1 = new pts: 28717. update pts: 28611 < new pts 28717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28716 + pts count: 1 = new pts: 28717. update pts: 28619 < new pts 28717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28716 + pts count: 1 = new pts: 28717. update pts: 28620 < new pts 28717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28716 + pts count: 1 = new pts: 28717. update pts: 28623 < new pts 28717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28716 + pts count: 1 = new pts: 28717. update pts: 28658 < new pts 28717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28716 + pts count: 1 = new pts: 28717. update pts: 28659 < new pts 28717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28716 + pts count: 1 = new pts: 28717. update pts: 28660 < new pts 28717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28716 + pts count: 1 = new pts: 28717. update pts: 28692 < new pts 28717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1025853 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1036676 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28718 + pts count: 1 = new pts: 28719. update pts: 28115 < new pts 28719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28718 + pts count: 1 = new pts: 28719. update pts: 28605 < new pts 28719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28718 + pts count: 1 = new pts: 28719. update pts: 28627 < new pts 28719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28718 + pts count: 1 = new pts: 28719. update pts: 28635 < new pts 28719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28718 + pts count: 1 = new pts: 28719. update pts: 28661 < new pts 28719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28718 + pts count: 1 = new pts: 28719. update pts: 28662 < new pts 28719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28718 + pts count: 1 = new pts: 28719. update pts: 28663 < new pts 28719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28718 + pts count: 1 = new pts: 28719. update pts: 28689 < new pts 28719, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28115 < new pts 28720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28611 < new pts 28720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28619 < new pts 28720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28620 < new pts 28720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28623 < new pts 28720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28658 < new pts 28720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28659 < new pts 28720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28660 < new pts 28720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28692 < new pts 28720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1027738 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1039449 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28721 + pts count: 1 = new pts: 28722, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28115 < new pts 28720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28605 < new pts 28720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28627 < new pts 28720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28635 < new pts 28720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28661 < new pts 28720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28662 < new pts 28720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28663 < new pts 28720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28719 + pts count: 1 = new pts: 28720. update pts: 28689 < new pts 28720, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28115 < new pts 28723, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28611 < new pts 28723, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28619 < new pts 28723, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28620 < new pts 28723, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28623 < new pts 28723, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28658 < new pts 28723, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28659 < new pts 28723, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28660 < new pts 28723, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28692 < new pts 28723, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1030753 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1039972 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28722, pts count: 1, new pts: 28723 < update pts: 28724, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShortMessage. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28115 < new pts 28723, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28605 < new pts 28723, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28627 < new pts 28723, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28635 < new pts 28723, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28661 < new pts 28723, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28662 < new pts 28723, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28663 < new pts 28723, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28722 + pts count: 1 = new pts: 28723. update pts: 28689 < new pts 28723, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28725 + pts count: 1 = new pts: 28726. update pts: 28115 < new pts 28726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28725 + pts count: 1 = new pts: 28726. update pts: 28611 < new pts 28726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28725 + pts count: 1 = new pts: 28726. update pts: 28619 < new pts 28726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28725 + pts count: 1 = new pts: 28726. update pts: 28620 < new pts 28726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28725 + pts count: 1 = new pts: 28726. update pts: 28623 < new pts 28726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28725 + pts count: 1 = new pts: 28726. update pts: 28658 < new pts 28726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28725 + pts count: 1 = new pts: 28726. update pts: 28659 < new pts 28726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28725 + pts count: 1 = new pts: 28726. update pts: 28660 < new pts 28726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28725 + pts count: 1 = new pts: 28726. update pts: 28692 < new pts 28726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1033892 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28725 + pts count: 1 = new pts: 28726, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28726 + pts count: 1 = new pts: 28727, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1044756 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28727 + pts count: 1 = new pts: 28728. update pts: 28115 < new pts 28728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28727 + pts count: 1 = new pts: 28728. update pts: 28605 < new pts 28728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28727 + pts count: 1 = new pts: 28728. update pts: 28627 < new pts 28728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28727 + pts count: 1 = new pts: 28728. update pts: 28635 < new pts 28728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28727 + pts count: 1 = new pts: 28728. update pts: 28661 < new pts 28728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28727 + pts count: 1 = new pts: 28728. update pts: 28662 < new pts 28728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28727 + pts count: 1 = new pts: 28728. update pts: 28663 < new pts 28728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28727 + pts count: 1 = new pts: 28728. update pts: 28689 < new pts 28728, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28726 + pts count: 1 = new pts: 28727. update pts: 28115 < new pts 28727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28726 + pts count: 1 = new pts: 28727. update pts: 28611 < new pts 28727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28726 + pts count: 1 = new pts: 28727. update pts: 28619 < new pts 28727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28726 + pts count: 1 = new pts: 28727. update pts: 28620 < new pts 28727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28726 + pts count: 1 = new pts: 28727. update pts: 28623 < new pts 28727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28726 + pts count: 1 = new pts: 28727. update pts: 28658 < new pts 28727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28726 + pts count: 1 = new pts: 28727. update pts: 28659 < new pts 28727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28726 + pts count: 1 = new pts: 28727. update pts: 28660 < new pts 28727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28726 + pts count: 1 = new pts: 28727. update pts: 28692 < new pts 28727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1032529 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28728 + pts count: 1 = new pts: 28729, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1048000 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28115 < new pts 28730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28605 < new pts 28730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28627 < new pts 28730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28635 < new pts 28730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28661 < new pts 28730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28662 < new pts 28730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28663 < new pts 28730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28689 < new pts 28730, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28115 < new pts 28730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28611 < new pts 28730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28619 < new pts 28730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28620 < new pts 28730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28623 < new pts 28730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28658 < new pts 28730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28659 < new pts 28730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28660 < new pts 28730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28729 + pts count: 1 = new pts: 28730. update pts: 28692 < new pts 28730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28729 + pts count: 1 = new pts: 28730, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1036077 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1052750 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28115 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28605 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28627 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28635 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28661 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28662 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28663 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28689 < new pts 28731, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1031122 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28115 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28611 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28619 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28620 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28623 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28658 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28659 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28660 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28692 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28730 < new pts 28731, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1053641 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28115 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28605 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28627 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28635 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28661 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28662 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28663 < new pts 28731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28730 + pts count: 1 = new pts: 28731. update pts: 28689 < new pts 28731, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28731 + pts count: 1 = new pts: 28732. update pts: 28115 < new pts 28732, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28731 + pts count: 1 = new pts: 28732. update pts: 28611 < new pts 28732, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28731 + pts count: 1 = new pts: 28732. update pts: 28619 < new pts 28732, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28731 + pts count: 1 = new pts: 28732. update pts: 28620 < new pts 28732, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28731 + pts count: 1 = new pts: 28732. update pts: 28623 < new pts 28732, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28731 + pts count: 1 = new pts: 28732. update pts: 28658 < new pts 28732, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28731 + pts count: 1 = new pts: 28732. update pts: 28659 < new pts 28732, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28731 + pts count: 1 = new pts: 28732. update pts: 28660 < new pts 28732, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28731 + pts count: 1 = new pts: 28732. update pts: 28692 < new pts 28732, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28731 + pts count: 1 = new pts: 28732. update pts: 28730 < new pts 28732, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28731 + pts count: 1 = new pts: 28732. update pts: 28731 < new pts 28732, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28731 + pts count: 1 = new pts: 28732, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -Wrote 1035297 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1065692 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28733 + pts count: 1 = new pts: 28734. update pts: 28115 < new pts 28734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28733 + pts count: 1 = new pts: 28734. update pts: 28605 < new pts 28734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28733 + pts count: 1 = new pts: 28734. update pts: 28627 < new pts 28734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28733 + pts count: 1 = new pts: 28734. update pts: 28635 < new pts 28734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28733 + pts count: 1 = new pts: 28734. update pts: 28661 < new pts 28734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28733 + pts count: 1 = new pts: 28734. update pts: 28662 < new pts 28734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28733 + pts count: 1 = new pts: 28734. update pts: 28663 < new pts 28734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28733 + pts count: 1 = new pts: 28734. update pts: 28689 < new pts 28734, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1045217 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28734 + pts count: 1 = new pts: 28735. update pts: 28115 < new pts 28735, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28734 + pts count: 1 = new pts: 28735. update pts: 28611 < new pts 28735, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28734 + pts count: 1 = new pts: 28735. update pts: 28619 < new pts 28735, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28734 + pts count: 1 = new pts: 28735. update pts: 28620 < new pts 28735, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28734 + pts count: 1 = new pts: 28735. update pts: 28623 < new pts 28735, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28734 + pts count: 1 = new pts: 28735. update pts: 28658 < new pts 28735, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28734 + pts count: 1 = new pts: 28735. update pts: 28659 < new pts 28735, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28734 + pts count: 1 = new pts: 28735. update pts: 28660 < new pts 28735, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28734 + pts count: 1 = new pts: 28735. update pts: 28692 < new pts 28735, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28734 + pts count: 1 = new pts: 28735. update pts: 28730 < new pts 28735, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28734 + pts count: 1 = new pts: 28735. update pts: 28731 < new pts 28735, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28734 + pts count: 1 = new pts: 28735. update pts: 28732 < new pts 28735, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28734 + pts count: 1 = new pts: 28735, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28115 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28605 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28627 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28635 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28661 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28662 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28663 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28689 < new pts 28739, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1072298 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1042874 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28115 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28611 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28619 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28620 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28623 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28658 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28659 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28660 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28692 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28730 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28731 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28732 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28738 + pts count: 1 = new pts: 28739. update pts: 28735 < new pts 28739, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28738 + pts count: 1 = new pts: 28739, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28739 + pts count: 1 = new pts: 28740, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28741 + pts count: 1 = new pts: 28742. update pts: 28115 < new pts 28742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28741 + pts count: 1 = new pts: 28742. update pts: 28605 < new pts 28742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28741 + pts count: 1 = new pts: 28742. update pts: 28627 < new pts 28742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28741 + pts count: 1 = new pts: 28742. update pts: 28635 < new pts 28742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28741 + pts count: 1 = new pts: 28742. update pts: 28661 < new pts 28742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28741 + pts count: 1 = new pts: 28742. update pts: 28662 < new pts 28742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28741 + pts count: 1 = new pts: 28742. update pts: 28663 < new pts 28742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28741 + pts count: 1 = new pts: 28742. update pts: 28689 < new pts 28742, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1079919 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShortChatMessage. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28742, pts count: 1, new pts: 28743 < update pts: 28744, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -Wrote 1042067 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28115 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28611 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28619 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28620 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28623 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28658 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28659 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28660 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28692 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28730 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28731 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28732 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28735 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28739 < new pts 28745, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28740 < new pts 28745, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28742 + pts count: 1 = new pts: 28743. update pts: 28115 < new pts 28743, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28742 + pts count: 1 = new pts: 28743. update pts: 28605 < new pts 28743, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28742 + pts count: 1 = new pts: 28743. update pts: 28627 < new pts 28743, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28742 + pts count: 1 = new pts: 28743. update pts: 28635 < new pts 28743, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28742 + pts count: 1 = new pts: 28743. update pts: 28661 < new pts 28743, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28742 + pts count: 1 = new pts: 28743. update pts: 28662 < new pts 28743, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28742 + pts count: 1 = new pts: 28743. update pts: 28663 < new pts 28743, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28742 + pts count: 1 = new pts: 28743. update pts: 28689 < new pts 28743, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28742 + pts count: 1 = new pts: 28743, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1074194 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1047992 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28115 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28611 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28619 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28620 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28623 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28658 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28659 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28660 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28692 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28730 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28731 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28732 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28735 < new pts 28745, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28739 < new pts 28745, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28744 + pts count: 1 = new pts: 28745. update pts: 28740 < new pts 28745, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28745 + pts count: 1 = new pts: 28746. update pts: 28115 < new pts 28746, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28745 + pts count: 1 = new pts: 28746. update pts: 28605 < new pts 28746, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28745 + pts count: 1 = new pts: 28746. update pts: 28627 < new pts 28746, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28745 + pts count: 1 = new pts: 28746. update pts: 28635 < new pts 28746, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28745 + pts count: 1 = new pts: 28746. update pts: 28661 < new pts 28746, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28745 + pts count: 1 = new pts: 28746. update pts: 28662 < new pts 28746, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28745 + pts count: 1 = new pts: 28746. update pts: 28663 < new pts 28746, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28745 + pts count: 1 = new pts: 28746. update pts: 28689 < new pts 28746, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28745 + pts count: 1 = new pts: 28746. update pts: 28743 < new pts 28746, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1076273 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1049018 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28746 + pts count: 1 = new pts: 28747. update pts: 28115 < new pts 28747, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28746 + pts count: 1 = new pts: 28747. update pts: 28611 < new pts 28747, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28746 + pts count: 1 = new pts: 28747. update pts: 28619 < new pts 28747, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28746 + pts count: 1 = new pts: 28747. update pts: 28620 < new pts 28747, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28746 + pts count: 1 = new pts: 28747. update pts: 28623 < new pts 28747, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28746 + pts count: 1 = new pts: 28747. update pts: 28658 < new pts 28747, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28746 + pts count: 1 = new pts: 28747. update pts: 28659 < new pts 28747, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28746 + pts count: 1 = new pts: 28747. update pts: 28660 < new pts 28747, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28746 + pts count: 1 = new pts: 28747. update pts: 28692 < new pts 28747, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28746 + pts count: 1 = new pts: 28747. update pts: 28730 < new pts 28747, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28746 + pts count: 1 = new pts: 28747. update pts: 28731 < new pts 28747, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28746 + pts count: 1 = new pts: 28747. update pts: 28732 < new pts 28747, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28746 + pts count: 1 = new pts: 28747. update pts: 28735 < new pts 28747, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28746 + pts count: 1 = new pts: 28747. update pts: 28739 < new pts 28747, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28746 + pts count: 1 = new pts: 28747. update pts: 28740 < new pts 28747, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28747 + pts count: 1 = new pts: 28748. update pts: 28115 < new pts 28748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28747 + pts count: 1 = new pts: 28748. update pts: 28605 < new pts 28748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28747 + pts count: 1 = new pts: 28748. update pts: 28627 < new pts 28748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28747 + pts count: 1 = new pts: 28748. update pts: 28635 < new pts 28748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28747 + pts count: 1 = new pts: 28748. update pts: 28661 < new pts 28748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28747 + pts count: 1 = new pts: 28748. update pts: 28662 < new pts 28748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28747 + pts count: 1 = new pts: 28748. update pts: 28663 < new pts 28748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28747 + pts count: 1 = new pts: 28748. update pts: 28689 < new pts 28748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28747 + pts count: 1 = new pts: 28748. update pts: 28743 < new pts 28748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1078332 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1049259 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28748 + pts count: 1 = new pts: 28749. update pts: 28115 < new pts 28749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28748 + pts count: 1 = new pts: 28749. update pts: 28611 < new pts 28749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28748 + pts count: 1 = new pts: 28749. update pts: 28619 < new pts 28749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28748 + pts count: 1 = new pts: 28749. update pts: 28620 < new pts 28749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28748 + pts count: 1 = new pts: 28749. update pts: 28623 < new pts 28749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28748 + pts count: 1 = new pts: 28749. update pts: 28658 < new pts 28749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28748 + pts count: 1 = new pts: 28749. update pts: 28659 < new pts 28749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28748 + pts count: 1 = new pts: 28749. update pts: 28660 < new pts 28749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28748 + pts count: 1 = new pts: 28749. update pts: 28692 < new pts 28749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28748 + pts count: 1 = new pts: 28749. update pts: 28730 < new pts 28749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28748 + pts count: 1 = new pts: 28749. update pts: 28731 < new pts 28749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28748 + pts count: 1 = new pts: 28749. update pts: 28732 < new pts 28749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28748 + pts count: 1 = new pts: 28749. update pts: 28735 < new pts 28749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28748 + pts count: 1 = new pts: 28749. update pts: 28739 < new pts 28749, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28748 + pts count: 1 = new pts: 28749. update pts: 28740 < new pts 28749, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28749 + pts count: 1 = new pts: 28750. update pts: 28115 < new pts 28750, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28749 + pts count: 1 = new pts: 28750. update pts: 28605 < new pts 28750, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28749 + pts count: 1 = new pts: 28750. update pts: 28627 < new pts 28750, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28749 + pts count: 1 = new pts: 28750. update pts: 28635 < new pts 28750, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28749 + pts count: 1 = new pts: 28750. update pts: 28661 < new pts 28750, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28749 + pts count: 1 = new pts: 28750. update pts: 28662 < new pts 28750, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28749 + pts count: 1 = new pts: 28750. update pts: 28663 < new pts 28750, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28749 + pts count: 1 = new pts: 28750. update pts: 28689 < new pts 28750, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28749 + pts count: 1 = new pts: 28750. update pts: 28743 < new pts 28750, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1082110 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1051484 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28751 + pts count: 1 = new pts: 28752, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28750 + pts count: 1 = new pts: 28751. update pts: 28115 < new pts 28751, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28750 + pts count: 1 = new pts: 28751. update pts: 28611 < new pts 28751, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28750 + pts count: 1 = new pts: 28751. update pts: 28619 < new pts 28751, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28750 + pts count: 1 = new pts: 28751. update pts: 28620 < new pts 28751, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28750 + pts count: 1 = new pts: 28751. update pts: 28623 < new pts 28751, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28750 + pts count: 1 = new pts: 28751. update pts: 28658 < new pts 28751, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28750 + pts count: 1 = new pts: 28751. update pts: 28659 < new pts 28751, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28750 + pts count: 1 = new pts: 28751. update pts: 28660 < new pts 28751, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28750 + pts count: 1 = new pts: 28751. update pts: 28692 < new pts 28751, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28750 + pts count: 1 = new pts: 28751. update pts: 28730 < new pts 28751, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28750 + pts count: 1 = new pts: 28751. update pts: 28731 < new pts 28751, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28750 + pts count: 1 = new pts: 28751. update pts: 28732 < new pts 28751, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28750 + pts count: 1 = new pts: 28751. update pts: 28735 < new pts 28751, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28750 + pts count: 1 = new pts: 28751. update pts: 28739 < new pts 28751, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28750 + pts count: 1 = new pts: 28751. update pts: 28740 < new pts 28751, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28115 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28605 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28627 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28635 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28661 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28662 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28663 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28689 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28743 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1084574 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28752, pts count: 1, new pts: 28753 < update pts: 28754, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1050683 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28754 + pts count: 1 = new pts: 28755. update pts: 28115 < new pts 28755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28754 + pts count: 1 = new pts: 28755. update pts: 28611 < new pts 28755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28754 + pts count: 1 = new pts: 28755. update pts: 28619 < new pts 28755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28754 + pts count: 1 = new pts: 28755. update pts: 28620 < new pts 28755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28754 + pts count: 1 = new pts: 28755. update pts: 28623 < new pts 28755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28754 + pts count: 1 = new pts: 28755. update pts: 28658 < new pts 28755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28754 + pts count: 1 = new pts: 28755. update pts: 28659 < new pts 28755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28754 + pts count: 1 = new pts: 28755. update pts: 28660 < new pts 28755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28754 + pts count: 1 = new pts: 28755. update pts: 28692 < new pts 28755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28754 + pts count: 1 = new pts: 28755. update pts: 28730 < new pts 28755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28754 + pts count: 1 = new pts: 28755. update pts: 28731 < new pts 28755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28754 + pts count: 1 = new pts: 28755. update pts: 28732 < new pts 28755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28754 + pts count: 1 = new pts: 28755. update pts: 28735 < new pts 28755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28754 + pts count: 1 = new pts: 28755. update pts: 28739 < new pts 28755, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28754 + pts count: 1 = new pts: 28755. update pts: 28740 < new pts 28755, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28115 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28605 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28627 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28635 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28661 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28662 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28663 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28689 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28752 + pts count: 1 = new pts: 28753. update pts: 28743 < new pts 28753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28752 + pts count: 1 = new pts: 28753, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1082636 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28754, pts count: 1, new pts: 28755 < update pts: 28756, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1058973 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28115 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28611 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28619 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28620 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28623 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28658 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28659 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28660 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28692 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28730 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28731 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28732 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28735 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28739 < new pts 28757, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28740 < new pts 28757, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28755 + pts count: 1 = new pts: 28756. update pts: 28115 < new pts 28756, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28755 + pts count: 1 = new pts: 28756. update pts: 28605 < new pts 28756, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28755 + pts count: 1 = new pts: 28756. update pts: 28627 < new pts 28756, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28755 + pts count: 1 = new pts: 28756. update pts: 28635 < new pts 28756, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28755 + pts count: 1 = new pts: 28756. update pts: 28661 < new pts 28756, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28755 + pts count: 1 = new pts: 28756. update pts: 28662 < new pts 28756, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28755 + pts count: 1 = new pts: 28756. update pts: 28663 < new pts 28756, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28755 + pts count: 1 = new pts: 28756. update pts: 28689 < new pts 28756, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28755 + pts count: 1 = new pts: 28756. update pts: 28743 < new pts 28756, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28755 + pts count: 1 = new pts: 28756. update pts: 28753 < new pts 28756, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1087866 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1062992 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28756 + pts count: 1 = new pts: 28757, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28757 + pts count: 1 = new pts: 28758, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28115 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28611 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28619 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28620 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28623 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28658 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28659 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28660 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28692 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28730 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28731 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28732 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28735 < new pts 28757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28739 < new pts 28757, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28756 + pts count: 1 = new pts: 28757. update pts: 28740 < new pts 28757, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28115 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28605 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28627 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28635 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28661 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28662 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28663 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28689 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28743 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28753 < new pts 28759, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1092733 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28758 + pts count: 1 = new pts: 28759, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1065832 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28759 + pts count: 1 = new pts: 28760. update pts: 28115 < new pts 28760, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28759 + pts count: 1 = new pts: 28760. update pts: 28611 < new pts 28760, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28759 + pts count: 1 = new pts: 28760. update pts: 28619 < new pts 28760, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28759 + pts count: 1 = new pts: 28760. update pts: 28620 < new pts 28760, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28759 + pts count: 1 = new pts: 28760. update pts: 28623 < new pts 28760, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28759 + pts count: 1 = new pts: 28760. update pts: 28658 < new pts 28760, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28759 + pts count: 1 = new pts: 28760. update pts: 28659 < new pts 28760, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28759 + pts count: 1 = new pts: 28760. update pts: 28660 < new pts 28760, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28759 + pts count: 1 = new pts: 28760. update pts: 28692 < new pts 28760, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28759 + pts count: 1 = new pts: 28760. update pts: 28730 < new pts 28760, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28759 + pts count: 1 = new pts: 28760. update pts: 28731 < new pts 28760, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28759 + pts count: 1 = new pts: 28760. update pts: 28732 < new pts 28760, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28759 + pts count: 1 = new pts: 28760. update pts: 28735 < new pts 28760, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28759 + pts count: 1 = new pts: 28760. update pts: 28739 < new pts 28760, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28759 + pts count: 1 = new pts: 28760. update pts: 28740 < new pts 28760, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28759, pts count: 1, new pts: 28760 < update pts: 28763, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28115 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28605 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28627 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28635 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28661 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28662 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28663 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28689 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28743 < new pts 28759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28758 + pts count: 1 = new pts: 28759. update pts: 28753 < new pts 28759, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1096121 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28763, pts count: 1, new pts: 28764 < update pts: 28766, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28763, pts count: 1, new pts: 28764 < update pts: 28765, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1070263 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28767 + pts count: 1 = new pts: 28768. update pts: 28115 < new pts 28768, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28767 + pts count: 1 = new pts: 28768. update pts: 28611 < new pts 28768, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28767 + pts count: 1 = new pts: 28768. update pts: 28619 < new pts 28768, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28767 + pts count: 1 = new pts: 28768. update pts: 28620 < new pts 28768, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28767 + pts count: 1 = new pts: 28768. update pts: 28623 < new pts 28768, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28767 + pts count: 1 = new pts: 28768. update pts: 28658 < new pts 28768, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28767 + pts count: 1 = new pts: 28768. update pts: 28659 < new pts 28768, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28767 + pts count: 1 = new pts: 28768. update pts: 28660 < new pts 28768, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28767 + pts count: 1 = new pts: 28768. update pts: 28692 < new pts 28768, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28767 + pts count: 1 = new pts: 28768. update pts: 28730 < new pts 28768, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28767 + pts count: 1 = new pts: 28768. update pts: 28731 < new pts 28768, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28767 + pts count: 1 = new pts: 28768. update pts: 28732 < new pts 28768, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28767 + pts count: 1 = new pts: 28768. update pts: 28735 < new pts 28768, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28767 + pts count: 1 = new pts: 28768. update pts: 28739 < new pts 28768, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28767 + pts count: 1 = new pts: 28768. update pts: 28740 < new pts 28768, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28764 + pts count: 1 = new pts: 28765. update pts: 28115 < new pts 28765, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28764 + pts count: 1 = new pts: 28765. update pts: 28605 < new pts 28765, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28764 + pts count: 1 = new pts: 28765. update pts: 28627 < new pts 28765, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28764 + pts count: 1 = new pts: 28765. update pts: 28635 < new pts 28765, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28764 + pts count: 1 = new pts: 28765. update pts: 28661 < new pts 28765, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28764 + pts count: 1 = new pts: 28765. update pts: 28662 < new pts 28765, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28764 + pts count: 1 = new pts: 28765. update pts: 28663 < new pts 28765, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28764 + pts count: 1 = new pts: 28765. update pts: 28689 < new pts 28765, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28764 + pts count: 1 = new pts: 28765. update pts: 28743 < new pts 28765, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28764 + pts count: 1 = new pts: 28765. update pts: 28753 < new pts 28765, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1098584 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28768 + pts count: 1 = new pts: 28769, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28768, pts count: 1, new pts: 28769 < update pts: 28770, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1077596 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28770 + pts count: 1 = new pts: 28771, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28770 + pts count: 1 = new pts: 28771. update pts: 28115 < new pts 28771, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28770 + pts count: 1 = new pts: 28771. update pts: 28611 < new pts 28771, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28770 + pts count: 1 = new pts: 28771. update pts: 28619 < new pts 28771, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28770 + pts count: 1 = new pts: 28771. update pts: 28620 < new pts 28771, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28770 + pts count: 1 = new pts: 28771. update pts: 28623 < new pts 28771, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28770 + pts count: 1 = new pts: 28771. update pts: 28658 < new pts 28771, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28770 + pts count: 1 = new pts: 28771. update pts: 28659 < new pts 28771, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28770 + pts count: 1 = new pts: 28771. update pts: 28660 < new pts 28771, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28770 + pts count: 1 = new pts: 28771. update pts: 28692 < new pts 28771, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28770 + pts count: 1 = new pts: 28771. update pts: 28730 < new pts 28771, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28770 + pts count: 1 = new pts: 28771. update pts: 28731 < new pts 28771, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28770 + pts count: 1 = new pts: 28771. update pts: 28732 < new pts 28771, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28770 + pts count: 1 = new pts: 28771. update pts: 28735 < new pts 28771, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28770 + pts count: 1 = new pts: 28771. update pts: 28739 < new pts 28771, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28770 + pts count: 1 = new pts: 28771. update pts: 28740 < new pts 28771, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28771 + pts count: 1 = new pts: 28772. update pts: 28115 < new pts 28772, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28771 + pts count: 1 = new pts: 28772. update pts: 28605 < new pts 28772, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28771 + pts count: 1 = new pts: 28772. update pts: 28627 < new pts 28772, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28771 + pts count: 1 = new pts: 28772. update pts: 28635 < new pts 28772, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28771 + pts count: 1 = new pts: 28772. update pts: 28661 < new pts 28772, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28771 + pts count: 1 = new pts: 28772. update pts: 28662 < new pts 28772, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28771 + pts count: 1 = new pts: 28772. update pts: 28663 < new pts 28772, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28771 + pts count: 1 = new pts: 28772. update pts: 28689 < new pts 28772, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28771 + pts count: 1 = new pts: 28772. update pts: 28743 < new pts 28772, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28771 + pts count: 1 = new pts: 28772. update pts: 28753 < new pts 28772, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28771 + pts count: 1 = new pts: 28772, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1105719 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28771, pts count: 1, new pts: 28772 < update pts: 28773, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1075079 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28773 + pts count: 1 = new pts: 28774. update pts: 28115 < new pts 28774, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28773 + pts count: 1 = new pts: 28774. update pts: 28611 < new pts 28774, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28773 + pts count: 1 = new pts: 28774. update pts: 28619 < new pts 28774, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28773 + pts count: 1 = new pts: 28774. update pts: 28620 < new pts 28774, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28773 + pts count: 1 = new pts: 28774. update pts: 28623 < new pts 28774, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28773 + pts count: 1 = new pts: 28774. update pts: 28658 < new pts 28774, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28773 + pts count: 1 = new pts: 28774. update pts: 28659 < new pts 28774, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28773 + pts count: 1 = new pts: 28774. update pts: 28660 < new pts 28774, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28773 + pts count: 1 = new pts: 28774. update pts: 28692 < new pts 28774, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28773 + pts count: 1 = new pts: 28774. update pts: 28730 < new pts 28774, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28773 + pts count: 1 = new pts: 28774. update pts: 28731 < new pts 28774, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28773 + pts count: 1 = new pts: 28774. update pts: 28732 < new pts 28774, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28773 + pts count: 1 = new pts: 28774. update pts: 28735 < new pts 28774, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28773 + pts count: 1 = new pts: 28774. update pts: 28739 < new pts 28774, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28773 + pts count: 1 = new pts: 28774. update pts: 28740 < new pts 28774, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28772 + pts count: 1 = new pts: 28773. update pts: 28115 < new pts 28773, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28772 + pts count: 1 = new pts: 28773. update pts: 28605 < new pts 28773, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28772 + pts count: 1 = new pts: 28773. update pts: 28627 < new pts 28773, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28772 + pts count: 1 = new pts: 28773. update pts: 28635 < new pts 28773, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28772 + pts count: 1 = new pts: 28773. update pts: 28661 < new pts 28773, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28772 + pts count: 1 = new pts: 28773. update pts: 28662 < new pts 28773, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28772 + pts count: 1 = new pts: 28773. update pts: 28663 < new pts 28773, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28772 + pts count: 1 = new pts: 28773. update pts: 28689 < new pts 28773, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28772 + pts count: 1 = new pts: 28773. update pts: 28743 < new pts 28773, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28772 + pts count: 1 = new pts: 28773. update pts: 28753 < new pts 28773, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1104777 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28773, pts count: 1, new pts: 28774 < update pts: 28776, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1073518 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28773, pts count: 1, new pts: 28774 < update pts: 28778, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28777 + pts count: 1 = new pts: 28778. update pts: 28115 < new pts 28778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28777 + pts count: 1 = new pts: 28778. update pts: 28611 < new pts 28778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28777 + pts count: 1 = new pts: 28778. update pts: 28619 < new pts 28778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28777 + pts count: 1 = new pts: 28778. update pts: 28620 < new pts 28778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28777 + pts count: 1 = new pts: 28778. update pts: 28623 < new pts 28778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28777 + pts count: 1 = new pts: 28778. update pts: 28658 < new pts 28778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28777 + pts count: 1 = new pts: 28778. update pts: 28659 < new pts 28778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28777 + pts count: 1 = new pts: 28778. update pts: 28660 < new pts 28778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28777 + pts count: 1 = new pts: 28778. update pts: 28692 < new pts 28778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28777 + pts count: 1 = new pts: 28778. update pts: 28730 < new pts 28778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28777 + pts count: 1 = new pts: 28778. update pts: 28731 < new pts 28778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28777 + pts count: 1 = new pts: 28778. update pts: 28732 < new pts 28778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28777 + pts count: 1 = new pts: 28778. update pts: 28735 < new pts 28778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28777 + pts count: 1 = new pts: 28778. update pts: 28739 < new pts 28778, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28777 + pts count: 1 = new pts: 28778. update pts: 28740 < new pts 28778, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28115 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28605 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28627 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28635 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28661 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28662 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28663 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28689 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28743 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28753 < new pts 28779, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28778 + pts count: 1 = new pts: 28779, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1107947 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28115 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28611 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28619 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28620 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28623 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28658 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28659 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28660 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28692 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28730 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28731 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28732 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28735 < new pts 28779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28739 < new pts 28779, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28778 + pts count: 1 = new pts: 28779. update pts: 28740 < new pts 28779, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1085493 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28779 + pts count: 1 = new pts: 28780. update pts: 28115 < new pts 28780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28779 + pts count: 1 = new pts: 28780. update pts: 28605 < new pts 28780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28779 + pts count: 1 = new pts: 28780. update pts: 28627 < new pts 28780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28779 + pts count: 1 = new pts: 28780. update pts: 28635 < new pts 28780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28779 + pts count: 1 = new pts: 28780. update pts: 28661 < new pts 28780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28779 + pts count: 1 = new pts: 28780. update pts: 28662 < new pts 28780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28779 + pts count: 1 = new pts: 28780. update pts: 28663 < new pts 28780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28779 + pts count: 1 = new pts: 28780. update pts: 28689 < new pts 28780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28779 + pts count: 1 = new pts: 28780. update pts: 28743 < new pts 28780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28779 + pts count: 1 = new pts: 28780. update pts: 28753 < new pts 28780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28779, pts count: 1, new pts: 28780 < update pts: 28781, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28784 + pts count: 1 = new pts: 28785. update pts: 28780 < new pts 28785, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1107727 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28783 + pts count: 1 = new pts: 28784. update pts: 28115 < new pts 28784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28783 + pts count: 1 = new pts: 28784. update pts: 28611 < new pts 28784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28783 + pts count: 1 = new pts: 28784. update pts: 28619 < new pts 28784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28783 + pts count: 1 = new pts: 28784. update pts: 28620 < new pts 28784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28783 + pts count: 1 = new pts: 28784. update pts: 28623 < new pts 28784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28783 + pts count: 1 = new pts: 28784. update pts: 28658 < new pts 28784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28783 + pts count: 1 = new pts: 28784. update pts: 28659 < new pts 28784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28783 + pts count: 1 = new pts: 28784. update pts: 28660 < new pts 28784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28783 + pts count: 1 = new pts: 28784. update pts: 28692 < new pts 28784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28783 + pts count: 1 = new pts: 28784. update pts: 28730 < new pts 28784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28783 + pts count: 1 = new pts: 28784. update pts: 28731 < new pts 28784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28783 + pts count: 1 = new pts: 28784. update pts: 28732 < new pts 28784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28783 + pts count: 1 = new pts: 28784. update pts: 28735 < new pts 28784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28783 + pts count: 1 = new pts: 28784. update pts: 28739 < new pts 28784, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28783 + pts count: 1 = new pts: 28784. update pts: 28740 < new pts 28784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28783 + pts count: 1 = new pts: 28784, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1093953 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1113327 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28784 + pts count: 1 = new pts: 28785. update pts: 28115 < new pts 28785, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28784 + pts count: 1 = new pts: 28785. update pts: 28605 < new pts 28785, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28784 + pts count: 1 = new pts: 28785. update pts: 28627 < new pts 28785, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28784 + pts count: 1 = new pts: 28785. update pts: 28635 < new pts 28785, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28784 + pts count: 1 = new pts: 28785. update pts: 28661 < new pts 28785, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28784 + pts count: 1 = new pts: 28785. update pts: 28662 < new pts 28785, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28784 + pts count: 1 = new pts: 28785. update pts: 28663 < new pts 28785, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28784 + pts count: 1 = new pts: 28785. update pts: 28689 < new pts 28785, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28784 + pts count: 1 = new pts: 28785. update pts: 28743 < new pts 28785, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28784 + pts count: 1 = new pts: 28785. update pts: 28753 < new pts 28785, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28784 + pts count: 1 = new pts: 28785. update pts: 28781 < new pts 28785, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28784 + pts count: 1 = new pts: 28785. update pts: 28780 < new pts 28785, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28115 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28611 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28619 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28620 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28623 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28658 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28659 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28660 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28692 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28730 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28731 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28732 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28735 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28739 < new pts 28786, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28740 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28784 < new pts 28786, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1094605 bytes -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1110017 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28115 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28605 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28627 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28635 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28661 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28662 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28663 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28689 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28743 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28753 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28781 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28780 < new pts 28786, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28115 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28611 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28619 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28620 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28623 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28658 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28659 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28660 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28692 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28730 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28731 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28732 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28735 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28739 < new pts 28786, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28740 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28784 < new pts 28786, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1091839 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28115 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28605 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28627 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28635 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28661 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28662 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28663 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28689 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28743 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28753 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28781 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28780 < new pts 28786, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1106532 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1090506 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28115 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28611 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28619 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28620 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28623 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28658 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28659 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28660 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28692 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28730 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28731 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28732 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28735 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28739 < new pts 28786, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28740 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28784 < new pts 28786, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28115 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28605 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28627 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28635 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28661 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28662 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28663 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28689 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28743 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28753 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28781 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28780 < new pts 28786, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1106870 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1087203 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28115 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28611 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28619 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28620 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28623 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28658 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28659 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28660 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28692 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28730 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28731 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28732 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28735 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28739 < new pts 28786, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28740 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28784 < new pts 28786, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28115 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28605 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28627 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28635 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28661 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28662 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28663 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28689 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28743 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28753 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28781 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28780 < new pts 28786, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1101220 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28115 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28611 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28619 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28620 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28623 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28658 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28659 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28660 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28692 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28730 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28731 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28732 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28735 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28739 < new pts 28786, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28740 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28784 < new pts 28786, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1086013 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1099656 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28115 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28605 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28627 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28635 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28661 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28662 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28663 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28689 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28743 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28753 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28781 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28780 < new pts 28786, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28115 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28611 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28619 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28620 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28623 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28658 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28659 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28660 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28692 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28730 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28731 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28732 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28735 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28739 < new pts 28786, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28740 < new pts 28786, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28785 + pts count: 1 = new pts: 28786. update pts: 28784 < new pts 28786, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1086232 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28785, pts count: 1, new pts: 28786 < update pts: 28789, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1104425 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28793 + pts count: 1 = new pts: 28794. update pts: 28115 < new pts 28794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28793 + pts count: 1 = new pts: 28794. update pts: 28605 < new pts 28794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28793 + pts count: 1 = new pts: 28794. update pts: 28627 < new pts 28794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28793 + pts count: 1 = new pts: 28794. update pts: 28635 < new pts 28794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28793 + pts count: 1 = new pts: 28794. update pts: 28661 < new pts 28794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28793 + pts count: 1 = new pts: 28794. update pts: 28662 < new pts 28794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28793 + pts count: 1 = new pts: 28794. update pts: 28663 < new pts 28794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28793 + pts count: 1 = new pts: 28794. update pts: 28689 < new pts 28794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28793 + pts count: 1 = new pts: 28794. update pts: 28743 < new pts 28794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28793 + pts count: 1 = new pts: 28794. update pts: 28753 < new pts 28794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28793 + pts count: 1 = new pts: 28794. update pts: 28781 < new pts 28794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28793 + pts count: 1 = new pts: 28794. update pts: 28780 < new pts 28794, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28788, pts count: 1, new pts: 28789 < update pts: 28795, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28115 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28611 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28619 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28620 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28623 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28658 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28659 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28660 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28692 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28730 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28731 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28732 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28735 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28739 < new pts 28798, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28740 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28784 < new pts 28798, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1097483 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1120919 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28115 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28605 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28627 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28635 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28661 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28662 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28663 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28689 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28743 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28753 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28781 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28780 < new pts 28798, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1098405 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28115 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28611 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28619 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28620 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28623 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28658 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28659 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28660 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28692 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28730 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28731 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28732 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28735 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28739 < new pts 28798, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28740 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28784 < new pts 28798, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1121962 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28115 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28605 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28627 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28635 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28661 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28662 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28663 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28689 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28743 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28753 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28781 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28780 < new pts 28798, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1095527 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28115 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28611 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28619 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28620 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28623 < new pts 28798, channel id: -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28658 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28659 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28660 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28692 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28730 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28731 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28732 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28735 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28739 < new pts 28798, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28740 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28784 < new pts 28798, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28115 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28605 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28627 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28635 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28661 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28662 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28663 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28689 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28743 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28753 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28781 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28780 < new pts 28798, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1120605 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1096594 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28115 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28611 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28619 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28620 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28623 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28658 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28659 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28660 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28692 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28730 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28731 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28732 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28735 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28739 < new pts 28798, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28740 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28784 < new pts 28798, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1118294 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28115 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28605 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28627 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28635 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28661 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28662 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28663 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28689 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28743 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28753 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28781 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28780 < new pts 28798, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1095316 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28115 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28611 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28619 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28620 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28623 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28658 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28659 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28660 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28692 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28730 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28731 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28732 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28735 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28739 < new pts 28798, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28740 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28784 < new pts 28798, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28115 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28605 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28627 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28635 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28661 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28662 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28663 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28689 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28743 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28753 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28781 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28780 < new pts 28798, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1115173 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28115 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28611 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28619 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28620 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28623 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28658 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28659 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28660 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28692 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28730 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28731 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28732 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28735 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28739 < new pts 28798, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28740 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28784 < new pts 28798, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1092844 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -Wrote 1126264 bytes -AuthKeyHandler, danogentili: Calling 136330... -ResponseHandler, danogentili: Received updates. -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28115 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28605 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28627 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28635 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28661 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28662 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28663 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28689 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28743 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28753 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28781 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28797 + pts count: 1 = new pts: 28798. update pts: 28780 < new pts 28798, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28797, pts count: 1, new pts: 28798 < update pts: 28799, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28809 + pts count: 1 = new pts: 28810. update pts: 28115 < new pts 28810, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28809 + pts count: 1 = new pts: 28810. update pts: 28611 < new pts 28810, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28809 + pts count: 1 = new pts: 28810. update pts: 28619 < new pts 28810, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28809 + pts count: 1 = new pts: 28810. update pts: 28620 < new pts 28810, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28809 + pts count: 1 = new pts: 28810. update pts: 28623 < new pts 28810, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28809 + pts count: 1 = new pts: 28810. update pts: 28658 < new pts 28810, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28809 + pts count: 1 = new pts: 28810. update pts: 28659 < new pts 28810, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28809 + pts count: 1 = new pts: 28810. update pts: 28660 < new pts 28810, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28809 + pts count: 1 = new pts: 28810. update pts: 28692 < new pts 28810, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28809 + pts count: 1 = new pts: 28810. update pts: 28730 < new pts 28810, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28809 + pts count: 1 = new pts: 28810. update pts: 28731 < new pts 28810, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28809 + pts count: 1 = new pts: 28810. update pts: 28732 < new pts 28810, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28809 + pts count: 1 = new pts: 28810. update pts: 28735 < new pts 28810, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28809 + pts count: 1 = new pts: 28810. update pts: 28739 < new pts 28810, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28809 + pts count: 1 = new pts: 28810. update pts: 28740 < new pts 28810, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28809 + pts count: 1 = new pts: 28810. update pts: 28784 < new pts 28810, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28809 + pts count: 1 = new pts: 28810, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28810 + pts count: 1 = new pts: 28811. update pts: 28798 < new pts 28811, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28810 + pts count: 1 = new pts: 28811. update pts: 28803 < new pts 28811, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28810 + pts count: 1 = new pts: 28811. update pts: 28802 < new pts 28811, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28810 + pts count: 1 = new pts: 28811. update pts: 28800 < new pts 28811, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28810 + pts count: 1 = new pts: 28811. update pts: 28801 < new pts 28811, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1125472 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28810 + pts count: 1 = new pts: 28811, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1127786 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28115 < new pts 28812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28611 < new pts 28812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28619 < new pts 28812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28620 < new pts 28812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28623 < new pts 28812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28658 < new pts 28812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28659 < new pts 28812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28660 < new pts 28812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28692 < new pts 28812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28730 < new pts 28812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28731 < new pts 28812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28732 < new pts 28812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28735 < new pts 28812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28739 < new pts 28812, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28740 < new pts 28812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28784 < new pts 28812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28811 + pts count: 1 = new pts: 28812. update pts: 28810 < new pts 28812, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28115 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28605 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28627 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28635 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28661 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28662 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28663 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28689 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28743 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28753 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28781 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28780 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28799 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28798 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28803 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28802 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28800 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28801 < new pts 28813, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1130162 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1131371 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28115 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28611 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28619 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28620 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28623 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28658 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28659 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28660 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28692 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28730 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28731 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28732 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28735 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28739 < new pts 28813, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28740 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28784 < new pts 28813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28812 + pts count: 1 = new pts: 28813. update pts: 28810 < new pts 28813, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28115 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28605 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28627 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28635 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28661 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28662 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28663 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28689 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28743 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28753 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28781 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28780 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28799 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28798 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28803 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28802 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28800 < new pts 28814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28813 + pts count: 1 = new pts: 28814. update pts: 28801 < new pts 28814, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1130849 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1132825 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28814, pts count: 1, new pts: 28815 < update pts: 28816, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28115 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28611 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28619 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28620 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28623 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28658 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28659 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28660 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28692 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28730 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28731 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28732 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28735 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28739 < new pts 28817, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28740 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28784 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28810 < new pts 28817, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28115 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28605 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28627 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28635 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28661 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28662 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28663 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28689 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28743 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28753 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28781 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28780 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28799 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28798 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28803 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28802 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28800 < new pts 28816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28815 + pts count: 1 = new pts: 28816. update pts: 28801 < new pts 28816, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1129459 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1133757 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28115 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28611 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28619 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28620 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28623 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28658 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28659 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28660 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28692 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28730 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28731 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28732 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28735 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28739 < new pts 28817, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28740 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28784 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28810 < new pts 28817, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28115 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28605 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28627 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28635 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28661 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28662 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28663 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28689 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28743 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28753 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28781 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28780 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28799 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28798 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28803 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28802 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28800 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28801 < new pts 28817, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1128342 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1131725 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28115 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28611 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28619 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28620 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28623 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28658 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28659 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28660 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28692 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28730 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28731 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28732 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28735 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28739 < new pts 28817, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28740 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28784 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28810 < new pts 28817, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28115 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28605 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28627 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28635 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28661 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28662 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28663 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28689 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28743 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28753 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28781 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28780 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28799 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28798 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28803 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28802 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28800 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28801 < new pts 28817, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1129381 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1129128 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28115 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28611 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28619 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28620 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28623 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28658 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28659 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28660 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28692 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28730 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28731 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28732 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28735 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28739 < new pts 28817, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28740 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28784 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28810 < new pts 28817, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28115 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28605 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28627 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28635 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28661 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28662 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28663 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28689 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28743 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28753 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28781 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28780 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28799 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28798 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28803 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28802 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28800 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28801 < new pts 28817, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1126949 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1128096 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28115 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28611 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28619 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28620 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28623 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28658 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28659 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28660 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28692 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28730 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28731 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28732 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28735 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28739 < new pts 28817, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28740 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28784 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28810 < new pts 28817, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28115 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28605 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28627 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28635 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28661 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28662 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28663 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28689 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28743 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28753 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28781 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28780 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28799 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28798 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28803 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28802 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28800 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28801 < new pts 28817, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1125767 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1126032 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28115 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28611 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28619 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28620 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28623 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28658 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28659 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28660 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28692 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28730 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28731 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28732 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28735 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28739 < new pts 28817, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28740 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28784 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28810 < new pts 28817, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28115 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28605 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28627 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28635 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28661 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28662 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28663 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28689 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28743 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28753 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28781 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28780 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28799 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28798 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28803 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28802 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28800 < new pts 28817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28816 + pts count: 1 = new pts: 28817. update pts: 28801 < new pts 28817, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1132795 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1137028 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28115 < new pts 28824, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28611 < new pts 28824, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28619 < new pts 28824, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28620 < new pts 28824, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28623 < new pts 28824, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28658 < new pts 28824, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28659 < new pts 28824, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28660 < new pts 28824, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28692 < new pts 28824, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28730 < new pts 28824, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28731 < new pts 28824, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28732 < new pts 28824, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28735 < new pts 28824, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28739 < new pts 28824, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28740 < new pts 28824, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28784 < new pts 28824, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28823 + pts count: 1 = new pts: 28824. update pts: 28810 < new pts 28824, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28115 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28605 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28627 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28635 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28661 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28662 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28663 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28689 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28743 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28753 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28781 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28780 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28799 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28798 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28803 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28802 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28800 < new pts 28825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28824 + pts count: 1 = new pts: 28825. update pts: 28801 < new pts 28825, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1140844 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1143486 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28115 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28611 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28619 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28620 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28623 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28658 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28659 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28660 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28692 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28730 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28731 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28732 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28735 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28739 < new pts 28828, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28740 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28784 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28810 < new pts 28828, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28115 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28605 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28627 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28635 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28661 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28662 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28663 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28689 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28743 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28753 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28781 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28780 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28799 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28798 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28803 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28802 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28800 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28801 < new pts 28828, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1138302 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1140210 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28115 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28611 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28619 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28620 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28623 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28658 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28659 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28660 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28692 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28730 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28731 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28732 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28735 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28739 < new pts 28828, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28740 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28784 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28810 < new pts 28828, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28115 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28605 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28627 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28635 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28661 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28662 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28663 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28689 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28743 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28753 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28781 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28780 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28799 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28798 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28803 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28802 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28800 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28801 < new pts 28828, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1136745 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1135899 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28115 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28611 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28619 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28620 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28623 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28658 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28659 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28660 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28692 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28730 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28731 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28732 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28735 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28739 < new pts 28828, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28740 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28784 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28810 < new pts 28828, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28115 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28605 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28627 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28635 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28661 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28662 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28663 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28689 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28743 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28753 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28781 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28780 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28799 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28798 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28803 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28802 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28800 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28801 < new pts 28828, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1135185 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1134190 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28115 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28611 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28619 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28620 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28623 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28658 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28659 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28660 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28692 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28730 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28731 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28732 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28735 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28739 < new pts 28828, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28740 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28784 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28810 < new pts 28828, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28115 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28605 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28627 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28635 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28661 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28662 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28663 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28689 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28743 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28753 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28781 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28780 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28799 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28798 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28803 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28802 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28800 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28801 < new pts 28828, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1133635 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1133048 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28827, pts count: 1, new pts: 28828 < update pts: 28829, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28115 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28611 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28619 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28620 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28623 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28658 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28659 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28660 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28692 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28730 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28731 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28732 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28735 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28739 < new pts 28828, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28740 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28784 < new pts 28828, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28827 + pts count: 1 = new pts: 28828. update pts: 28810 < new pts 28828, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28115 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28605 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28627 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28635 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28661 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28662 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28663 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28689 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28743 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28753 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28781 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28780 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28799 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28798 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28803 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28802 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28800 < new pts 28836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28835 + pts count: 1 = new pts: 28836. update pts: 28801 < new pts 28836, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1146791 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1153513 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28115 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28611 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28619 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28620 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28623 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28658 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28659 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28660 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28692 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28730 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28731 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28732 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28735 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28739 < new pts 28839, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28740 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28784 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28810 < new pts 28839, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28115 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28605 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28627 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28635 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28661 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28662 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28663 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28689 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28743 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28753 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28781 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28780 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28799 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28798 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28803 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28802 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28800 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28801 < new pts 28839, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1145094 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1151761 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28115 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28611 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28619 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28620 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28623 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28658 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28659 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28660 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28692 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28730 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28731 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28732 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28735 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28739 < new pts 28839, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28740 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28784 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28810 < new pts 28839, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28115 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28605 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28627 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28635 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28661 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28662 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28663 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28689 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28743 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28753 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28781 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28780 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28799 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28798 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28803 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28802 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28800 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28801 < new pts 28839, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1145974 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1151217 bytes -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Calling 136330... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28115 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28611 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28619 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28620 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28623 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28658 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28659 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28660 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28692 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28730 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28731 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28732 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28735 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28739 < new pts 28839, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28740 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28784 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28810 < new pts 28839, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28115 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28605 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28627 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28635 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28661 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28662 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28663 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28689 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28743 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28753 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28781 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28780 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28799 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28798 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28803 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28802 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28800 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28801 < new pts 28839, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1142429 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1148167 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28115 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28611 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28619 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28620 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28623 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28658 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28659 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28660 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28692 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28730 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28731 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28732 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28735 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28739 < new pts 28839, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28740 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28784 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28810 < new pts 28839, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28115 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28605 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28627 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28635 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28661 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28662 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28663 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28689 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28743 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28753 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28781 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28780 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28799 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28798 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28803 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28802 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28800 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28801 < new pts 28839, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1140879 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1147147 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28115 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28611 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28619 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28620 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28623 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28658 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28659 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28660 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28692 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28730 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28731 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28732 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28735 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28739 < new pts 28839, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28740 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28784 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28810 < new pts 28839, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28115 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28605 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28627 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28635 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28661 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28662 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28663 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28689 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28743 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28753 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28781 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28780 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28799 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28798 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28803 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28802 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28800 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28801 < new pts 28839, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1141708 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1145810 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28838 + pts count: 1 = new pts: 28839, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28115 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28611 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28619 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28620 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28623 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28658 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28659 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28660 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28692 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28730 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28731 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28732 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28735 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28739 < new pts 28839, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28740 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28784 < new pts 28839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28838 + pts count: 1 = new pts: 28839. update pts: 28810 < new pts 28839, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28115 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28605 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28627 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28635 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28661 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28662 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28663 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28689 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28743 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28753 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28781 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28780 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28799 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28798 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28803 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28802 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28800 < new pts 28840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28839 + pts count: 1 = new pts: 28840. update pts: 28801 < new pts 28840, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1153749 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1161087 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28115 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28611 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28619 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28620 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28623 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28658 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28659 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28660 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28692 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28730 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28731 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28732 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28735 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28739 < new pts 28851, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28740 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28784 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28810 < new pts 28851, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28115 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28605 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28627 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28635 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28661 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28662 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28663 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28689 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28743 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28753 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28781 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28780 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28799 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28798 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28803 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28802 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28800 < new pts 28851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28850 + pts count: 1 = new pts: 28851. update pts: 28801 < new pts 28851, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1157350 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1161096 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28115 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28611 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28619 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28620 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28623 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28658 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28659 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28660 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28692 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28730 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28731 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28732 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28735 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28739 < new pts 28853, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28740 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28784 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28810 < new pts 28853, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28115 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28605 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28627 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28635 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28661 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28662 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28663 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28689 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28743 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28753 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28781 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28780 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28799 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28798 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28803 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28802 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28800 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28801 < new pts 28853, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1152652 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1158242 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28115 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28611 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28619 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28620 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28623 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28658 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28659 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28660 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28692 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28730 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28731 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28732 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28735 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28739 < new pts 28853, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28740 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28784 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28810 < new pts 28853, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28115 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28605 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28627 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28635 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28661 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28662 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28663 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28689 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28743 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28753 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28781 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28780 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28799 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28798 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28803 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28802 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28800 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28801 < new pts 28853, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1150889 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1157452 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28115 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28611 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28619 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28620 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28623 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28658 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28659 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28660 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28692 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28730 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28731 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28732 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28735 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28739 < new pts 28853, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28740 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28115 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28605 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28627 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28635 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28661 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28662 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28663 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28689 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28743 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28753 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28781 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28780 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28799 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28798 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28803 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28802 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28800 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28801 < new pts 28853, channel id: -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28784 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28810 < new pts 28853, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1147445 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1157459 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28115 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28611 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28619 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28620 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28623 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28658 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28659 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28660 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28692 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28730 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28731 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28732 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28735 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28739 < new pts 28853, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28740 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28784 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28810 < new pts 28853, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28115 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28605 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28627 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28635 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28661 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28662 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28663 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28689 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28743 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28753 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28781 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28780 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28799 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28798 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28803 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28802 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28800 < new pts 28853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28852 + pts count: 1 = new pts: 28853. update pts: 28801 < new pts 28853, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1156466 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1166654 bytes -AuthKeyHandler, danogentili: Calling 136330... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28115 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28611 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28619 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28620 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28623 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28658 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28659 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28660 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28692 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28730 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28731 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28732 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28735 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28739 < new pts 28861, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28740 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28784 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28810 < new pts 28861, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28115 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28605 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28627 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28635 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28661 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28662 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28663 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28689 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28743 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28753 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28781 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28780 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28799 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28798 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28803 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28802 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28800 < new pts 28861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28860 + pts count: 1 = new pts: 28861. update pts: 28801 < new pts 28861, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1158899 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1164911 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28115 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28611 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28619 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28620 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28623 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28658 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28659 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28660 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28692 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28730 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28731 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28732 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28735 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28739 < new pts 28863, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28740 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28784 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28810 < new pts 28863, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28115 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28605 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28627 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28635 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28661 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28662 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28663 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28689 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28743 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28753 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28781 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28780 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28799 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28798 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28803 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28802 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28800 < new pts 28863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28862 + pts count: 1 = new pts: 28863. update pts: 28801 < new pts 28863, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1165295 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -Wrote 1170412 bytes -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28115 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28611 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28619 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28620 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28623 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28658 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28659 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28660 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28692 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28730 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28731 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28732 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28735 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28739 < new pts 28865, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28740 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28784 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28810 < new pts 28865, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28115 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28605 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28627 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28635 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28661 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28662 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28663 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28689 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28743 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28753 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28781 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28780 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28799 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28798 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28803 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28802 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28800 < new pts 28865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28864 + pts count: 1 = new pts: 28865. update pts: 28801 < new pts 28865, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1165164 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1170109 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28115 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28611 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28619 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28620 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28623 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28658 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28659 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28660 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28692 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28730 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28731 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28732 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28735 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28739 < new pts 28867, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28740 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28784 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28810 < new pts 28867, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28115 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28605 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28627 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28635 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28661 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28662 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28663 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28689 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28743 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28753 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28781 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28780 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28799 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28798 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28803 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28802 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28800 < new pts 28867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28866 + pts count: 1 = new pts: 28867. update pts: 28801 < new pts 28867, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1167912 bytes -Wrote 1174959 bytes -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28873 + pts count: 1 = new pts: 28874. update pts: 28115 < new pts 28874, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 636813 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28873 + pts count: 1 = new pts: 28874. update pts: 28115 < new pts 28874, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 644050 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28874 + pts count: 1 = new pts: 28875. update pts: 28115 < new pts 28875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28874 + pts count: 1 = new pts: 28875, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28875 + pts count: 1 = new pts: 28876, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 657257 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28876 + pts count: 1 = new pts: 28877. update pts: 28115 < new pts 28877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28876 + pts count: 1 = new pts: 28877. update pts: 28875 < new pts 28877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28876 + pts count: 1 = new pts: 28877. update pts: 28876 < new pts 28877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28876 + pts count: 1 = new pts: 28877, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28877 + pts count: 1 = new pts: 28878, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28878 + pts count: 1 = new pts: 28879, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 676666 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28880 + pts count: 1 = new pts: 28881. update pts: 28115 < new pts 28881, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28880 + pts count: 1 = new pts: 28881. update pts: 28875 < new pts 28881, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28880 + pts count: 1 = new pts: 28881. update pts: 28876 < new pts 28881, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28880 + pts count: 1 = new pts: 28881. update pts: 28877 < new pts 28881, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28880 + pts count: 1 = new pts: 28881. update pts: 28878 < new pts 28881, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28880 + pts count: 1 = new pts: 28881. update pts: 28879 < new pts 28881, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28880, pts count: 1, new pts: 28881 < update pts: 28883, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 694141 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28883 + pts count: 1 = new pts: 28884. update pts: 28115 < new pts 28884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28883 + pts count: 1 = new pts: 28884. update pts: 28875 < new pts 28884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28883 + pts count: 1 = new pts: 28884. update pts: 28876 < new pts 28884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28883 + pts count: 1 = new pts: 28884. update pts: 28877 < new pts 28884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28883 + pts count: 1 = new pts: 28884. update pts: 28878 < new pts 28884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28883 + pts count: 1 = new pts: 28884. update pts: 28879 < new pts 28884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 705383 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28883 + pts count: 1 = new pts: 28884. update pts: 28115 < new pts 28884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28883 + pts count: 1 = new pts: 28884. update pts: 28875 < new pts 28884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28883 + pts count: 1 = new pts: 28884. update pts: 28876 < new pts 28884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28883 + pts count: 1 = new pts: 28884. update pts: 28877 < new pts 28884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28883 + pts count: 1 = new pts: 28884. update pts: 28878 < new pts 28884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28883 + pts count: 1 = new pts: 28884. update pts: 28879 < new pts 28884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28883 + pts count: 1 = new pts: 28884, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28884 + pts count: 1 = new pts: 28885, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 719124 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28885, pts count: 1, new pts: 28886 < update pts: 28887, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28887 + pts count: 1 = new pts: 28888. update pts: 28115 < new pts 28888, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28887 + pts count: 1 = new pts: 28888. update pts: 28875 < new pts 28888, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28887 + pts count: 1 = new pts: 28888. update pts: 28876 < new pts 28888, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28887 + pts count: 1 = new pts: 28888. update pts: 28877 < new pts 28888, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28887 + pts count: 1 = new pts: 28888. update pts: 28878 < new pts 28888, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28887 + pts count: 1 = new pts: 28888. update pts: 28879 < new pts 28888, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28887 + pts count: 1 = new pts: 28888. update pts: 28884 < new pts 28888, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28887 + pts count: 1 = new pts: 28888. update pts: 28885 < new pts 28888, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28887 + pts count: 1 = new pts: 28888. update pts: 28886 < new pts 28888, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 750418 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28889 + pts count: 1 = new pts: 28890, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28115 < new pts 28891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28875 < new pts 28891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28876 < new pts 28891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28877 < new pts 28891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28878 < new pts 28891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28879 < new pts 28891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28884 < new pts 28891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28885 < new pts 28891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28886 < new pts 28891, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 758522 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28115 < new pts 28891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28875 < new pts 28891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28876 < new pts 28891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28877 < new pts 28891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28878 < new pts 28891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28879 < new pts 28891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28884 < new pts 28891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28885 < new pts 28891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28890 + pts count: 1 = new pts: 28891. update pts: 28886 < new pts 28891, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 768106 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28891 + pts count: 1 = new pts: 28892. update pts: 28115 < new pts 28892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28891 + pts count: 1 = new pts: 28892. update pts: 28875 < new pts 28892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28891 + pts count: 1 = new pts: 28892. update pts: 28876 < new pts 28892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28891 + pts count: 1 = new pts: 28892. update pts: 28877 < new pts 28892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28891 + pts count: 1 = new pts: 28892. update pts: 28878 < new pts 28892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28891 + pts count: 1 = new pts: 28892. update pts: 28879 < new pts 28892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28891 + pts count: 1 = new pts: 28892. update pts: 28884 < new pts 28892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28891 + pts count: 1 = new pts: 28892. update pts: 28885 < new pts 28892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28891 + pts count: 1 = new pts: 28892. update pts: 28886 < new pts 28892, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 777688 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28892 + pts count: 1 = new pts: 28893. update pts: 28115 < new pts 28893, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28892 + pts count: 1 = new pts: 28893. update pts: 28875 < new pts 28893, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28892 + pts count: 1 = new pts: 28893. update pts: 28876 < new pts 28893, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28892 + pts count: 1 = new pts: 28893. update pts: 28877 < new pts 28893, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28892 + pts count: 1 = new pts: 28893. update pts: 28878 < new pts 28893, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28892 + pts count: 1 = new pts: 28893. update pts: 28879 < new pts 28893, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28892 + pts count: 1 = new pts: 28893. update pts: 28884 < new pts 28893, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28892 + pts count: 1 = new pts: 28893. update pts: 28885 < new pts 28893, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28892 + pts count: 1 = new pts: 28893. update pts: 28886 < new pts 28893, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 790344 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28115 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28875 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28876 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28877 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28878 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28879 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28884 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28885 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28886 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28894 < new pts 28895, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 801860 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28115 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28875 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28876 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28877 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28878 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28879 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28884 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28885 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28886 < new pts 28895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28894 + pts count: 1 = new pts: 28895. update pts: 28894 < new pts 28895, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 814518 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28115 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28875 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28876 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28877 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28878 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28879 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28884 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28885 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28886 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28894 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28896 < new pts 28897, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 826036 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28115 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28875 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28876 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28877 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28878 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28879 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28884 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28885 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28886 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28894 < new pts 28897, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28896 + pts count: 1 = new pts: 28897. update pts: 28896 < new pts 28897, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 835627 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28897 + pts count: 1 = new pts: 28898. update pts: 28115 < new pts 28898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28897 + pts count: 1 = new pts: 28898. update pts: 28875 < new pts 28898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28897 + pts count: 1 = new pts: 28898. update pts: 28876 < new pts 28898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28897 + pts count: 1 = new pts: 28898. update pts: 28877 < new pts 28898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28897 + pts count: 1 = new pts: 28898. update pts: 28878 < new pts 28898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28897 + pts count: 1 = new pts: 28898. update pts: 28879 < new pts 28898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28897 + pts count: 1 = new pts: 28898. update pts: 28884 < new pts 28898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28897 + pts count: 1 = new pts: 28898. update pts: 28885 < new pts 28898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28897 + pts count: 1 = new pts: 28898. update pts: 28886 < new pts 28898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28897 + pts count: 1 = new pts: 28898. update pts: 28894 < new pts 28898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28897 + pts count: 1 = new pts: 28898. update pts: 28896 < new pts 28898, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 853837 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28115 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28875 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28876 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28877 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28878 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28879 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28884 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28885 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28886 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28894 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28896 < new pts 28900, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 860359 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28115 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28875 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28876 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28877 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28878 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28879 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28884 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28885 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28886 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28894 < new pts 28900, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28899 + pts count: 1 = new pts: 28900. update pts: 28896 < new pts 28900, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 869951 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28900 + pts count: 1 = new pts: 28901, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28115 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28875 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28876 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28877 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28878 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28879 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28884 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28885 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28886 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28894 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28896 < new pts 28902, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 879610 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28115 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28875 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28876 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28877 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28878 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28879 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28884 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28885 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28886 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28894 < new pts 28902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28901 + pts count: 1 = new pts: 28902. update pts: 28896 < new pts 28902, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 897820 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28903 + pts count: 1 = new pts: 28904. update pts: 28115 < new pts 28904, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28903 + pts count: 1 = new pts: 28904. update pts: 28875 < new pts 28904, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28903 + pts count: 1 = new pts: 28904. update pts: 28876 < new pts 28904, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28903 + pts count: 1 = new pts: 28904. update pts: 28877 < new pts 28904, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28903 + pts count: 1 = new pts: 28904. update pts: 28878 < new pts 28904, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28903 + pts count: 1 = new pts: 28904. update pts: 28879 < new pts 28904, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28903 + pts count: 1 = new pts: 28904. update pts: 28884 < new pts 28904, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28903 + pts count: 1 = new pts: 28904. update pts: 28885 < new pts 28904, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28903 + pts count: 1 = new pts: 28904. update pts: 28886 < new pts 28904, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28903 + pts count: 1 = new pts: 28904. update pts: 28894 < new pts 28904, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28903 + pts count: 1 = new pts: 28904. update pts: 28896 < new pts 28904, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 912161 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28904 + pts count: 1 = new pts: 28905. update pts: 28115 < new pts 28905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28904 + pts count: 1 = new pts: 28905. update pts: 28875 < new pts 28905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28904 + pts count: 1 = new pts: 28905. update pts: 28876 < new pts 28905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28904 + pts count: 1 = new pts: 28905. update pts: 28877 < new pts 28905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28904 + pts count: 1 = new pts: 28905. update pts: 28878 < new pts 28905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28904 + pts count: 1 = new pts: 28905. update pts: 28879 < new pts 28905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28904 + pts count: 1 = new pts: 28905. update pts: 28884 < new pts 28905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28904 + pts count: 1 = new pts: 28905. update pts: 28885 < new pts 28905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28904 + pts count: 1 = new pts: 28905. update pts: 28886 < new pts 28905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28904 + pts count: 1 = new pts: 28905. update pts: 28894 < new pts 28905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28904 + pts count: 1 = new pts: 28905. update pts: 28896 < new pts 28905, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 919693 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28905 + pts count: 1 = new pts: 28906. update pts: 28115 < new pts 28906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28905 + pts count: 1 = new pts: 28906. update pts: 28875 < new pts 28906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28905 + pts count: 1 = new pts: 28906. update pts: 28876 < new pts 28906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28905 + pts count: 1 = new pts: 28906. update pts: 28877 < new pts 28906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28905 + pts count: 1 = new pts: 28906. update pts: 28878 < new pts 28906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28905 + pts count: 1 = new pts: 28906. update pts: 28879 < new pts 28906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28905 + pts count: 1 = new pts: 28906. update pts: 28884 < new pts 28906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28905 + pts count: 1 = new pts: 28906. update pts: 28885 < new pts 28906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28905 + pts count: 1 = new pts: 28906. update pts: 28886 < new pts 28906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28905 + pts count: 1 = new pts: 28906. update pts: 28894 < new pts 28906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28905 + pts count: 1 = new pts: 28906. update pts: 28896 < new pts 28906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28905 + pts count: 1 = new pts: 28906. update pts: 28905 < new pts 28906, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 932036 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28115 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28875 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28876 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28877 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28878 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28879 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28884 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28885 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28886 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28894 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28896 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28905 < new pts 28907, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 936532 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28115 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28875 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28876 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28877 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28878 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28879 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28884 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28885 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28886 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28894 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28896 < new pts 28907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28906 + pts count: 1 = new pts: 28907. update pts: 28905 < new pts 28907, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 945272 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28115 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28875 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28876 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28877 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28878 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28879 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28884 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28885 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28886 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28894 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28896 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28905 < new pts 28909, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 949726 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28115 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28875 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28876 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28877 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28878 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28879 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28884 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28885 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28886 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28894 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28896 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28908 + pts count: 1 = new pts: 28909. update pts: 28905 < new pts 28909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28908 + pts count: 1 = new pts: 28909, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 963018 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28910 + pts count: 1 = new pts: 28911. update pts: 28115 < new pts 28911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28910 + pts count: 1 = new pts: 28911. update pts: 28875 < new pts 28911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28910 + pts count: 1 = new pts: 28911. update pts: 28876 < new pts 28911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28910 + pts count: 1 = new pts: 28911. update pts: 28877 < new pts 28911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28910 + pts count: 1 = new pts: 28911. update pts: 28878 < new pts 28911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28910 + pts count: 1 = new pts: 28911. update pts: 28879 < new pts 28911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28910 + pts count: 1 = new pts: 28911. update pts: 28884 < new pts 28911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28910 + pts count: 1 = new pts: 28911. update pts: 28885 < new pts 28911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28910 + pts count: 1 = new pts: 28911. update pts: 28886 < new pts 28911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28910 + pts count: 1 = new pts: 28911. update pts: 28894 < new pts 28911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28910 + pts count: 1 = new pts: 28911. update pts: 28896 < new pts 28911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28910 + pts count: 1 = new pts: 28911. update pts: 28905 < new pts 28911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28910 + pts count: 1 = new pts: 28911. update pts: 28909 < new pts 28911, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 975914 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28115 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28875 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28876 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28877 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28878 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28879 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28884 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28885 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28886 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28894 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28896 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28905 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28909 < new pts 28912, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 980464 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28115 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28875 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28876 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28877 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28878 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28879 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28884 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28885 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28886 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28894 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28896 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28905 < new pts 28912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28911 + pts count: 1 = new pts: 28912. update pts: 28909 < new pts 28912, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 996431 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28913 + pts count: 1 = new pts: 28914. update pts: 28115 < new pts 28914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28913 + pts count: 1 = new pts: 28914. update pts: 28875 < new pts 28914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28913 + pts count: 1 = new pts: 28914. update pts: 28876 < new pts 28914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28913 + pts count: 1 = new pts: 28914. update pts: 28877 < new pts 28914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28913 + pts count: 1 = new pts: 28914. update pts: 28878 < new pts 28914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28913 + pts count: 1 = new pts: 28914. update pts: 28879 < new pts 28914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28913 + pts count: 1 = new pts: 28914. update pts: 28884 < new pts 28914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28913 + pts count: 1 = new pts: 28914. update pts: 28885 < new pts 28914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28913 + pts count: 1 = new pts: 28914. update pts: 28886 < new pts 28914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28913 + pts count: 1 = new pts: 28914. update pts: 28894 < new pts 28914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28913 + pts count: 1 = new pts: 28914. update pts: 28896 < new pts 28914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28913 + pts count: 1 = new pts: 28914. update pts: 28905 < new pts 28914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28913 + pts count: 1 = new pts: 28914. update pts: 28909 < new pts 28914, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1007591 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28915 + pts count: 1 = new pts: 28916, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28115 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28875 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28876 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28877 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28878 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28879 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28884 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28885 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28886 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28894 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28896 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28905 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28909 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28915 < new pts 28917, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1018279 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28115 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28875 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28876 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28877 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28878 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28879 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28884 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28885 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28886 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28894 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28896 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28905 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28909 < new pts 28917, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28916 + pts count: 1 = new pts: 28917. update pts: 28915 < new pts 28917, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1025803 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28917 + pts count: 1 = new pts: 28918. update pts: 28115 < new pts 28918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28917 + pts count: 1 = new pts: 28918. update pts: 28875 < new pts 28918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28917 + pts count: 1 = new pts: 28918. update pts: 28876 < new pts 28918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28917 + pts count: 1 = new pts: 28918. update pts: 28877 < new pts 28918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28917 + pts count: 1 = new pts: 28918. update pts: 28878 < new pts 28918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28917 + pts count: 1 = new pts: 28918. update pts: 28879 < new pts 28918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28917 + pts count: 1 = new pts: 28918. update pts: 28884 < new pts 28918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28917 + pts count: 1 = new pts: 28918. update pts: 28885 < new pts 28918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28917 + pts count: 1 = new pts: 28918. update pts: 28886 < new pts 28918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28917 + pts count: 1 = new pts: 28918. update pts: 28894 < new pts 28918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28917 + pts count: 1 = new pts: 28918. update pts: 28896 < new pts 28918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28917 + pts count: 1 = new pts: 28918. update pts: 28905 < new pts 28918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28917 + pts count: 1 = new pts: 28918. update pts: 28909 < new pts 28918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28917 + pts count: 1 = new pts: 28918. update pts: 28915 < new pts 28918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28917 + pts count: 1 = new pts: 28918, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28918 + pts count: 1 = new pts: 28919, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28919 + pts count: 1 = new pts: 28920, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1038847 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28920 + pts count: 1 = new pts: 28921. update pts: 28115 < new pts 28921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28920 + pts count: 1 = new pts: 28921. update pts: 28875 < new pts 28921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28920 + pts count: 1 = new pts: 28921. update pts: 28876 < new pts 28921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28920 + pts count: 1 = new pts: 28921. update pts: 28877 < new pts 28921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28920 + pts count: 1 = new pts: 28921. update pts: 28878 < new pts 28921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28920 + pts count: 1 = new pts: 28921. update pts: 28879 < new pts 28921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28920 + pts count: 1 = new pts: 28921. update pts: 28884 < new pts 28921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28920 + pts count: 1 = new pts: 28921. update pts: 28885 < new pts 28921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28920 + pts count: 1 = new pts: 28921. update pts: 28886 < new pts 28921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28920 + pts count: 1 = new pts: 28921. update pts: 28894 < new pts 28921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28920 + pts count: 1 = new pts: 28921. update pts: 28896 < new pts 28921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28920 + pts count: 1 = new pts: 28921. update pts: 28905 < new pts 28921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28920 + pts count: 1 = new pts: 28921. update pts: 28909 < new pts 28921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28920 + pts count: 1 = new pts: 28921. update pts: 28915 < new pts 28921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28920 + pts count: 1 = new pts: 28921. update pts: 28918 < new pts 28921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28920 + pts count: 1 = new pts: 28921, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1050948 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28922 + pts count: 1 = new pts: 28923. update pts: 28115 < new pts 28923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28922 + pts count: 1 = new pts: 28923. update pts: 28875 < new pts 28923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28922 + pts count: 1 = new pts: 28923. update pts: 28876 < new pts 28923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28922 + pts count: 1 = new pts: 28923. update pts: 28877 < new pts 28923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28922 + pts count: 1 = new pts: 28923. update pts: 28878 < new pts 28923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28922 + pts count: 1 = new pts: 28923. update pts: 28879 < new pts 28923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28922 + pts count: 1 = new pts: 28923. update pts: 28884 < new pts 28923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28922 + pts count: 1 = new pts: 28923. update pts: 28885 < new pts 28923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28922 + pts count: 1 = new pts: 28923. update pts: 28886 < new pts 28923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28922 + pts count: 1 = new pts: 28923. update pts: 28894 < new pts 28923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28922 + pts count: 1 = new pts: 28923. update pts: 28896 < new pts 28923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28922 + pts count: 1 = new pts: 28923. update pts: 28905 < new pts 28923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28922 + pts count: 1 = new pts: 28923. update pts: 28909 < new pts 28923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28922 + pts count: 1 = new pts: 28923. update pts: 28915 < new pts 28923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28922 + pts count: 1 = new pts: 28923. update pts: 28918 < new pts 28923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28922 + pts count: 1 = new pts: 28923. update pts: 28921 < new pts 28923, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1058873 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28115 < new pts 28926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28875 < new pts 28926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28876 < new pts 28926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28877 < new pts 28926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28878 < new pts 28926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28879 < new pts 28926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28884 < new pts 28926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28885 < new pts 28926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28886 < new pts 28926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28894 < new pts 28926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28896 < new pts 28926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28905 < new pts 28926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28909 < new pts 28926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28915 < new pts 28926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28918 < new pts 28926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28921 < new pts 28926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28925 + pts count: 1 = new pts: 28926. update pts: 28925 < new pts 28926, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1070181 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28115 < new pts 28928, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28875 < new pts 28928, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28876 < new pts 28928, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28877 < new pts 28928, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28878 < new pts 28928, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28879 < new pts 28928, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28884 < new pts 28928, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28885 < new pts 28928, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28886 < new pts 28928, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28894 < new pts 28928, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28896 < new pts 28928, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28905 < new pts 28928, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28909 < new pts 28928, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28915 < new pts 28928, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28918 < new pts 28928, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28921 < new pts 28928, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28927 + pts count: 1 = new pts: 28928. update pts: 28925 < new pts 28928, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1070993 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28928, pts count: 1, new pts: 28929 < update pts: 28930, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28115 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28875 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28876 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28877 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28878 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28879 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28884 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28885 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28886 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28894 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28896 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28905 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28909 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28915 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28918 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28921 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28925 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28929 < new pts 28931, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1077179 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28115 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28875 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28876 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28877 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28878 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28879 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28884 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28885 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28886 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28894 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28896 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28905 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28909 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28915 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28918 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28921 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28925 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28930 + pts count: 1 = new pts: 28931. update pts: 28929 < new pts 28931, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28930 + pts count: 1 = new pts: 28931, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1079499 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28115 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28875 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28876 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28877 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28878 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28879 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28884 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28885 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28886 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28894 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28896 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28905 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28909 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28915 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28918 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28921 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28925 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28929 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28933 + pts count: 1 = new pts: 28934. update pts: 28931 < new pts 28934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 28933 + pts count: 1 = new pts: 28934, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28934 + pts count: 1 = new pts: 28935, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28938, pts count: 1, new pts: 28939 < update pts: 28940, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1093619 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -ResponseHandler, danogentili: Received rpc_result. -Loading settings... -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28115 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28875 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28876 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28877 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28878 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28879 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28884 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28885 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28886 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28894 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28896 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28905 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28909 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28915 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28918 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28921 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28925 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28929 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28931 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28934 < new pts 28941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28940 + pts count: 1 = new pts: 28941. update pts: 28935 < new pts 28941, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28941 + pts count: 1 = new pts: 28942. update pts: 28115 < new pts 28942, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 650920 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28943, pts count: 1, new pts: 28944 < update pts: 28945, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1095811 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28945 + pts count: 1 = new pts: 28946. update pts: 28115 < new pts 28946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28945 + pts count: 1 = new pts: 28946. update pts: 28943 < new pts 28946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28945 + pts count: 1 = new pts: 28946. update pts: 28944 < new pts 28946, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28115 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28875 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28876 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28877 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28878 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28879 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28884 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28885 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28886 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28894 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28896 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28905 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28909 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28915 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28918 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28921 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28925 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28929 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28931 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28934 < new pts 28943, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28942 + pts count: 1 = new pts: 28943. update pts: 28935 < new pts 28943, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 675904 bytes -AuthKeyHandler, danogentili: Calling 150271... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28946, pts count: 1, new pts: 28947 < update pts: 28948, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28948 + pts count: 1 = new pts: 28949. update pts: 28115 < new pts 28949, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28948 + pts count: 1 = new pts: 28949. update pts: 28943 < new pts 28949, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28948 + pts count: 1 = new pts: 28949. update pts: 28944 < new pts 28949, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28948 + pts count: 1 = new pts: 28949. update pts: 28947 < new pts 28949, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1100121 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 699303 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28115 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28875 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28876 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28877 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28878 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28879 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28884 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28885 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28886 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28894 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28896 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28905 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28909 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28915 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28918 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28921 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28925 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28929 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28931 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28934 < new pts 28948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28947 + pts count: 1 = new pts: 28948. update pts: 28935 < new pts 28948, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28947, pts count: 1, new pts: 28948 < update pts: 28951, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28950 + pts count: 1 = new pts: 28951. update pts: 28115 < new pts 28951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28950 + pts count: 1 = new pts: 28951. update pts: 28943 < new pts 28951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28950 + pts count: 1 = new pts: 28951. update pts: 28944 < new pts 28951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28950 + pts count: 1 = new pts: 28951. update pts: 28947 < new pts 28951, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Pts hole. current pts: 28950, pts count: 1, new pts: 28951 < update pts: 28952, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 725707 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1110211 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28954 + pts count: 1 = new pts: 28955. update pts: 28115 < new pts 28955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28954 + pts count: 1 = new pts: 28955. update pts: 28943 < new pts 28955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28954 + pts count: 1 = new pts: 28955. update pts: 28944 < new pts 28955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28954 + pts count: 1 = new pts: 28955. update pts: 28947 < new pts 28955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28954 + pts count: 1 = new pts: 28955, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28115 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28875 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28876 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28877 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28878 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28879 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28884 < new pts 28954, channel id: -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28885 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28886 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28894 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28896 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28905 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28909 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28915 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28918 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28921 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28925 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28929 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28931 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28934 < new pts 28954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28953 + pts count: 1 = new pts: 28954. update pts: 28935 < new pts 28954, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 737049 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28957, pts count: 1, new pts: 28958 < update pts: 28959, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28959 + pts count: 1 = new pts: 28960. update pts: 28115 < new pts 28960, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28959 + pts count: 1 = new pts: 28960. update pts: 28943 < new pts 28960, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28959 + pts count: 1 = new pts: 28960. update pts: 28944 < new pts 28960, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28959 + pts count: 1 = new pts: 28960. update pts: 28947 < new pts 28960, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28959 + pts count: 1 = new pts: 28960. update pts: 28955 < new pts 28960, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28959 + pts count: 1 = new pts: 28960, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1119363 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 755460 bytes -AuthKeyHandler, danogentili: Calling 150271... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28115 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28875 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28876 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28877 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28878 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28879 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28884 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28885 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28886 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28894 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28896 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28905 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28909 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28915 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28918 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28921 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28925 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28929 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28931 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28934 < new pts 28959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28958 + pts count: 1 = new pts: 28959. update pts: 28935 < new pts 28959, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28961 + pts count: 1 = new pts: 28962. update pts: 28115 < new pts 28962, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28961 + pts count: 1 = new pts: 28962. update pts: 28943 < new pts 28962, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28961 + pts count: 1 = new pts: 28962. update pts: 28944 < new pts 28962, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28961 + pts count: 1 = new pts: 28962. update pts: 28947 < new pts 28962, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28961 + pts count: 1 = new pts: 28962. update pts: 28955 < new pts 28962, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1125259 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 773321 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28115 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28875 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28876 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28877 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28878 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28879 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28884 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28885 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28886 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28894 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28896 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28905 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28909 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28915 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28918 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28921 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28925 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28929 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28931 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28934 < new pts 28964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28963 + pts count: 1 = new pts: 28964. update pts: 28935 < new pts 28964, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28964 + pts count: 1 = new pts: 28965. update pts: 28115 < new pts 28965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28964 + pts count: 1 = new pts: 28965. update pts: 28943 < new pts 28965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28964 + pts count: 1 = new pts: 28965. update pts: 28944 < new pts 28965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28964 + pts count: 1 = new pts: 28965. update pts: 28947 < new pts 28965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28964 + pts count: 1 = new pts: 28965. update pts: 28955 < new pts 28965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28964 + pts count: 1 = new pts: 28965, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 790217 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1128367 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28115 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28943 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28944 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28947 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28955 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28965 < new pts 28968, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28115 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28875 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28876 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28877 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28878 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28879 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28884 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28885 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28886 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28894 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28896 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28905 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28909 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28915 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28918 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28921 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28925 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28929 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28931 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28934 < new pts 28968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28967 + pts count: 1 = new pts: 28968. update pts: 28935 < new pts 28968, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 802538 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28971 + pts count: 1 = new pts: 28972. update pts: 28115 < new pts 28972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28971 + pts count: 1 = new pts: 28972. update pts: 28943 < new pts 28972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28971 + pts count: 1 = new pts: 28972. update pts: 28944 < new pts 28972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28971 + pts count: 1 = new pts: 28972. update pts: 28947 < new pts 28972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28971 + pts count: 1 = new pts: 28972. update pts: 28955 < new pts 28972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28971 + pts count: 1 = new pts: 28972. update pts: 28965 < new pts 28972, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28971, pts count: 1, new pts: 28972 < update pts: 28974, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1135242 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 816523 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28115 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28875 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28876 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28877 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28878 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28879 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28884 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28885 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28886 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28894 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28896 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28905 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28909 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28915 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28918 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28921 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28925 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28929 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28931 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28934 < new pts 28973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28972 + pts count: 1 = new pts: 28973. update pts: 28935 < new pts 28973, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28974, pts count: 1, new pts: 28975 < update pts: 28976, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShortMessage. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28978 + pts count: 1 = new pts: 28979. update pts: 28115 < new pts 28979, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28978 + pts count: 1 = new pts: 28979. update pts: 28943 < new pts 28979, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28978 + pts count: 1 = new pts: 28979. update pts: 28944 < new pts 28979, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28978 + pts count: 1 = new pts: 28979. update pts: 28947 < new pts 28979, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28978 + pts count: 1 = new pts: 28979. update pts: 28955 < new pts 28979, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28978 + pts count: 1 = new pts: 28979. update pts: 28965 < new pts 28979, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1137352 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShortMessage. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 28977, pts count: 1, new pts: 28978 < update pts: 28982, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 835213 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28115 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28875 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28876 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28877 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28878 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28879 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28884 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28885 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28886 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28894 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28896 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28905 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28909 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28915 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28918 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28921 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28925 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28929 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28931 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28934 < new pts 28983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28982 + pts count: 1 = new pts: 28983. update pts: 28935 < new pts 28983, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28980 + pts count: 1 = new pts: 28981. update pts: 28115 < new pts 28981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28980 + pts count: 1 = new pts: 28981. update pts: 28943 < new pts 28981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28980 + pts count: 1 = new pts: 28981. update pts: 28944 < new pts 28981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28980 + pts count: 1 = new pts: 28981. update pts: 28947 < new pts 28981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28980 + pts count: 1 = new pts: 28981. update pts: 28955 < new pts 28981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28980 + pts count: 1 = new pts: 28981. update pts: 28965 < new pts 28981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28980 + pts count: 1 = new pts: 28981, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 856424 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1147214 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28986 + pts count: 1 = new pts: 28987. update pts: 28115 < new pts 28987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28986 + pts count: 1 = new pts: 28987. update pts: 28943 < new pts 28987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28986 + pts count: 1 = new pts: 28987. update pts: 28944 < new pts 28987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28986 + pts count: 1 = new pts: 28987. update pts: 28947 < new pts 28987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28986 + pts count: 1 = new pts: 28987. update pts: 28955 < new pts 28987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28986 + pts count: 1 = new pts: 28987. update pts: 28965 < new pts 28987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28986 + pts count: 1 = new pts: 28987. update pts: 28981 < new pts 28987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28986 + pts count: 1 = new pts: 28987, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28987 + pts count: 1 = new pts: 28988, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 28988 + pts count: 1 = new pts: 28989, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28115 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28875 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28876 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28877 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28878 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28879 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28884 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28885 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28886 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28894 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28896 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28905 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28909 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28915 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28918 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28921 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28925 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28929 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28931 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28934 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28984 + pts count: 1 = new pts: 28985. update pts: 28935 < new pts 28985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28984, pts count: 1, new pts: 28985 < update pts: 28986, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28990 + pts count: 1 = new pts: 28991. update pts: 28985 < new pts 28991, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 874003 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28990, pts count: 1, new pts: 28991 < update pts: 28993, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28993 + pts count: 1 = new pts: 28994. update pts: 28115 < new pts 28994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28993 + pts count: 1 = new pts: 28994. update pts: 28943 < new pts 28994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28993 + pts count: 1 = new pts: 28994. update pts: 28944 < new pts 28994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28993 + pts count: 1 = new pts: 28994. update pts: 28947 < new pts 28994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28993 + pts count: 1 = new pts: 28994. update pts: 28955 < new pts 28994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28993 + pts count: 1 = new pts: 28994. update pts: 28965 < new pts 28994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28993 + pts count: 1 = new pts: 28994. update pts: 28981 < new pts 28994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28993 + pts count: 1 = new pts: 28994. update pts: 28987 < new pts 28994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28993 + pts count: 1 = new pts: 28994. update pts: 28988 < new pts 28994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28993 + pts count: 1 = new pts: 28994. update pts: 28989 < new pts 28994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28993 + pts count: 1 = new pts: 28994. update pts: 28992 < new pts 28994, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1155238 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28115 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28875 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28876 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28877 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28878 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28879 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28884 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28885 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28886 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28894 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28896 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28905 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28909 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28915 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28918 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28921 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28925 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28929 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28931 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28934 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28935 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28986 < new pts 28993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28992 + pts count: 1 = new pts: 28993. update pts: 28985 < new pts 28993, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 895780 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28992, pts count: 1, new pts: 28993 < update pts: 28995, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28994 + pts count: 1 = new pts: 28995. update pts: 28115 < new pts 28995, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28994 + pts count: 1 = new pts: 28995. update pts: 28943 < new pts 28995, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28994 + pts count: 1 = new pts: 28995. update pts: 28944 < new pts 28995, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28994 + pts count: 1 = new pts: 28995. update pts: 28947 < new pts 28995, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28994 + pts count: 1 = new pts: 28995. update pts: 28955 < new pts 28995, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28994 + pts count: 1 = new pts: 28995. update pts: 28965 < new pts 28995, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28994 + pts count: 1 = new pts: 28995. update pts: 28981 < new pts 28995, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28994 + pts count: 1 = new pts: 28995. update pts: 28987 < new pts 28995, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28994 + pts count: 1 = new pts: 28995. update pts: 28988 < new pts 28995, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28994 + pts count: 1 = new pts: 28995. update pts: 28989 < new pts 28995, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28994 + pts count: 1 = new pts: 28995. update pts: 28992 < new pts 28995, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28996, pts count: 1, new pts: 28997 < update pts: 28998, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1162574 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 913700 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28115 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28875 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28876 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28877 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28878 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28879 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28884 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28885 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28886 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28894 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28896 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28905 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28909 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28915 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28918 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28921 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28925 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28929 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28931 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28934 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28935 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28986 < new pts 28997, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28996 + pts count: 1 = new pts: 28997. update pts: 28985 < new pts 28997, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28997 + pts count: 1 = new pts: 28998. update pts: 28115 < new pts 28998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28997 + pts count: 1 = new pts: 28998. update pts: 28943 < new pts 28998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28997 + pts count: 1 = new pts: 28998. update pts: 28944 < new pts 28998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 28997 + pts count: 1 = new pts: 28998. update pts: 28947 < new pts 28998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28997 + pts count: 1 = new pts: 28998. update pts: 28955 < new pts 28998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28997 + pts count: 1 = new pts: 28998. update pts: 28965 < new pts 28998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28997 + pts count: 1 = new pts: 28998. update pts: 28981 < new pts 28998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28997 + pts count: 1 = new pts: 28998. update pts: 28987 < new pts 28998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28997 + pts count: 1 = new pts: 28998. update pts: 28988 < new pts 28998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28997 + pts count: 1 = new pts: 28998. update pts: 28989 < new pts 28998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 28997 + pts count: 1 = new pts: 28998. update pts: 28992 < new pts 28998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 28997, pts count: 1, new pts: 28998 < update pts: 28999, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1168383 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29000, pts count: 1, new pts: 29001 < update pts: 29003, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 929061 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28115 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28875 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28876 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28877 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28878 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28879 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28884 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28885 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28886 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28894 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28896 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28905 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28909 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28915 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28918 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28921 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28925 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28929 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28931 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28934 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28935 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28986 < new pts 29004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29003 + pts count: 1 = new pts: 29004. update pts: 28985 < new pts 29004, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29002 + pts count: 1 = new pts: 29003. update pts: 28115 < new pts 29003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29002 + pts count: 1 = new pts: 29003. update pts: 28943 < new pts 29003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29002 + pts count: 1 = new pts: 29003. update pts: 28944 < new pts 29003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29002 + pts count: 1 = new pts: 29003. update pts: 28947 < new pts 29003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29002 + pts count: 1 = new pts: 29003. update pts: 28955 < new pts 29003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29002 + pts count: 1 = new pts: 29003. update pts: 28965 < new pts 29003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29002 + pts count: 1 = new pts: 29003. update pts: 28981 < new pts 29003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29002 + pts count: 1 = new pts: 29003. update pts: 28987 < new pts 29003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29002 + pts count: 1 = new pts: 29003. update pts: 28988 < new pts 29003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29002 + pts count: 1 = new pts: 29003. update pts: 28989 < new pts 29003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29002 + pts count: 1 = new pts: 29003. update pts: 28992 < new pts 29003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29002 + pts count: 1 = new pts: 29003. update pts: 28999 < new pts 29003, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1172103 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 941393 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29004, pts count: 1, new pts: 29005 < update pts: 29007, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29005 + pts count: 1 = new pts: 29006. update pts: 28115 < new pts 29006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29005 + pts count: 1 = new pts: 29006. update pts: 28943 < new pts 29006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29005 + pts count: 1 = new pts: 29006. update pts: 28944 < new pts 29006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29005 + pts count: 1 = new pts: 29006. update pts: 28947 < new pts 29006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29005 + pts count: 1 = new pts: 29006. update pts: 28955 < new pts 29006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29005 + pts count: 1 = new pts: 29006. update pts: 28965 < new pts 29006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29005 + pts count: 1 = new pts: 29006. update pts: 28981 < new pts 29006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29005 + pts count: 1 = new pts: 29006. update pts: 28987 < new pts 29006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29005 + pts count: 1 = new pts: 29006. update pts: 28988 < new pts 29006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29005 + pts count: 1 = new pts: 29006. update pts: 28989 < new pts 29006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29005 + pts count: 1 = new pts: 29006. update pts: 28992 < new pts 29006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29005 + pts count: 1 = new pts: 29006. update pts: 28999 < new pts 29006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29005 + pts count: 1 = new pts: 29006, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28115 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28875 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28876 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28877 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28878 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28879 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28884 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28885 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28886 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28894 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28896 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28905 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28909 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28915 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28918 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28921 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28925 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28929 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28931 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28934 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28935 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28986 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 28985 < new pts 29008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29007 + pts count: 1 = new pts: 29008. update pts: 29004 < new pts 29008, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 952751 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29008, pts count: 1, new pts: 29009 < update pts: 29011, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1178905 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29011 + pts count: 1 = new pts: 29012. update pts: 28115 < new pts 29012, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29011 + pts count: 1 = new pts: 29012. update pts: 28943 < new pts 29012, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29011 + pts count: 1 = new pts: 29012. update pts: 28944 < new pts 29012, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29011 + pts count: 1 = new pts: 29012. update pts: 28947 < new pts 29012, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29011 + pts count: 1 = new pts: 29012. update pts: 28955 < new pts 29012, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29011 + pts count: 1 = new pts: 29012. update pts: 28965 < new pts 29012, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29011 + pts count: 1 = new pts: 29012. update pts: 28981 < new pts 29012, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29011 + pts count: 1 = new pts: 29012. update pts: 28987 < new pts 29012, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29011 + pts count: 1 = new pts: 29012. update pts: 28988 < new pts 29012, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29011 + pts count: 1 = new pts: 29012. update pts: 28989 < new pts 29012, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29011 + pts count: 1 = new pts: 29012. update pts: 28992 < new pts 29012, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29011 + pts count: 1 = new pts: 29012. update pts: 28999 < new pts 29012, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29011 + pts count: 1 = new pts: 29012. update pts: 29006 < new pts 29012, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29011 + pts count: 1 = new pts: 29012. update pts: 29009 < new pts 29012, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28115 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28875 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28876 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28877 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28878 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28879 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28884 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28885 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28886 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28894 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28896 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28905 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28909 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28915 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28918 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28921 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28925 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28929 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28931 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28934 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28935 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28986 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 28985 < new pts 29010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29009 + pts count: 1 = new pts: 29010. update pts: 29004 < new pts 29010, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 973120 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29012, pts count: 1, new pts: 29013 < update pts: 29014, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29014 + pts count: 1 = new pts: 29015. update pts: 28115 < new pts 29015, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29014 + pts count: 1 = new pts: 29015. update pts: 28943 < new pts 29015, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29014 + pts count: 1 = new pts: 29015. update pts: 28944 < new pts 29015, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29014 + pts count: 1 = new pts: 29015. update pts: 28947 < new pts 29015, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29014 + pts count: 1 = new pts: 29015. update pts: 28955 < new pts 29015, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29014 + pts count: 1 = new pts: 29015. update pts: 28965 < new pts 29015, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29014 + pts count: 1 = new pts: 29015. update pts: 28981 < new pts 29015, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29014 + pts count: 1 = new pts: 29015. update pts: 28987 < new pts 29015, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29014 + pts count: 1 = new pts: 29015. update pts: 28988 < new pts 29015, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29014 + pts count: 1 = new pts: 29015. update pts: 28989 < new pts 29015, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29014 + pts count: 1 = new pts: 29015. update pts: 28992 < new pts 29015, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29014 + pts count: 1 = new pts: 29015. update pts: 28999 < new pts 29015, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29014 + pts count: 1 = new pts: 29015. update pts: 29006 < new pts 29015, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29014 + pts count: 1 = new pts: 29015. update pts: 29009 < new pts 29015, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29014 + pts count: 1 = new pts: 29015. update pts: 29012 < new pts 29015, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29014 + pts count: 1 = new pts: 29015, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1184483 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28115 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28875 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28876 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28877 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28878 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28879 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28884 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28885 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28886 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28894 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28896 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28905 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28909 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28915 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28918 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28921 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28925 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28929 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28931 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28934 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28935 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28986 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 28985 < new pts 29014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29013 + pts count: 1 = new pts: 29014. update pts: 29004 < new pts 29014, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 991767 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29016 + pts count: 1 = new pts: 29017. update pts: 28115 < new pts 29017, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29016 + pts count: 1 = new pts: 29017. update pts: 28943 < new pts 29017, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29016 + pts count: 1 = new pts: 29017. update pts: 28944 < new pts 29017, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29016 + pts count: 1 = new pts: 29017. update pts: 28947 < new pts 29017, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29016 + pts count: 1 = new pts: 29017. update pts: 28955 < new pts 29017, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29016 + pts count: 1 = new pts: 29017. update pts: 28965 < new pts 29017, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29016 + pts count: 1 = new pts: 29017. update pts: 28981 < new pts 29017, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29016 + pts count: 1 = new pts: 29017. update pts: 28987 < new pts 29017, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29016 + pts count: 1 = new pts: 29017. update pts: 28988 < new pts 29017, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29016 + pts count: 1 = new pts: 29017. update pts: 28989 < new pts 29017, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29016 + pts count: 1 = new pts: 29017. update pts: 28992 < new pts 29017, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29016 + pts count: 1 = new pts: 29017. update pts: 28999 < new pts 29017, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29016 + pts count: 1 = new pts: 29017. update pts: 29006 < new pts 29017, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29016 + pts count: 1 = new pts: 29017. update pts: 29009 < new pts 29017, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29016 + pts count: 1 = new pts: 29017. update pts: 29012 < new pts 29017, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1186120 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29017, pts count: 1, new pts: 29018 < update pts: 29020, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1002528 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28115 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28875 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28876 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28877 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28878 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28879 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28884 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28885 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28886 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28894 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28896 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28905 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28909 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28915 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28918 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28921 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28925 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28929 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28931 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28934 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28935 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28986 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 28985 < new pts 29021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29020 + pts count: 1 = new pts: 29021. update pts: 29004 < new pts 29021, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29019 + pts count: 1 = new pts: 29020. update pts: 28115 < new pts 29020, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29019 + pts count: 1 = new pts: 29020. update pts: 28943 < new pts 29020, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29019 + pts count: 1 = new pts: 29020. update pts: 28944 < new pts 29020, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29019 + pts count: 1 = new pts: 29020. update pts: 28947 < new pts 29020, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29019 + pts count: 1 = new pts: 29020. update pts: 28955 < new pts 29020, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29019 + pts count: 1 = new pts: 29020. update pts: 28965 < new pts 29020, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29019 + pts count: 1 = new pts: 29020. update pts: 28981 < new pts 29020, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29019 + pts count: 1 = new pts: 29020. update pts: 28987 < new pts 29020, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29019 + pts count: 1 = new pts: 29020. update pts: 28988 < new pts 29020, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29019 + pts count: 1 = new pts: 29020. update pts: 28989 < new pts 29020, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29019 + pts count: 1 = new pts: 29020. update pts: 28992 < new pts 29020, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29019 + pts count: 1 = new pts: 29020. update pts: 28999 < new pts 29020, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29019 + pts count: 1 = new pts: 29020. update pts: 29006 < new pts 29020, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29019 + pts count: 1 = new pts: 29020. update pts: 29009 < new pts 29020, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29019 + pts count: 1 = new pts: 29020. update pts: 29012 < new pts 29020, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1194145 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1020607 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29022, pts count: 1, new pts: 29023 < update pts: 29025, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28115 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28875 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28876 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28877 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28878 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28879 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28884 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28885 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28886 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28894 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28896 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28905 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28909 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28915 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28918 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28921 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28925 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28929 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28931 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28934 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28935 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28986 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 28985 < new pts 29026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29025 + pts count: 1 = new pts: 29026. update pts: 29004 < new pts 29026, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29023 + pts count: 1 = new pts: 29024. update pts: 28115 < new pts 29024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29023 + pts count: 1 = new pts: 29024. update pts: 28943 < new pts 29024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29023 + pts count: 1 = new pts: 29024. update pts: 28944 < new pts 29024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29023 + pts count: 1 = new pts: 29024. update pts: 28947 < new pts 29024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29023 + pts count: 1 = new pts: 29024. update pts: 28955 < new pts 29024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29023 + pts count: 1 = new pts: 29024. update pts: 28965 < new pts 29024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29023 + pts count: 1 = new pts: 29024. update pts: 28981 < new pts 29024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29023 + pts count: 1 = new pts: 29024. update pts: 28987 < new pts 29024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29023 + pts count: 1 = new pts: 29024. update pts: 28988 < new pts 29024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29023 + pts count: 1 = new pts: 29024. update pts: 28989 < new pts 29024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29023 + pts count: 1 = new pts: 29024. update pts: 28992 < new pts 29024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29023 + pts count: 1 = new pts: 29024. update pts: 28999 < new pts 29024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29023 + pts count: 1 = new pts: 29024. update pts: 29006 < new pts 29024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29023 + pts count: 1 = new pts: 29024. update pts: 29009 < new pts 29024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29023 + pts count: 1 = new pts: 29024. update pts: 29012 < new pts 29024, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1035343 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1199863 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29027, pts count: 1, new pts: 29028 < update pts: 29029, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29029 + pts count: 1 = new pts: 29030. update pts: 28115 < new pts 29030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29029 + pts count: 1 = new pts: 29030. update pts: 28943 < new pts 29030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29029 + pts count: 1 = new pts: 29030. update pts: 28944 < new pts 29030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29029 + pts count: 1 = new pts: 29030. update pts: 28947 < new pts 29030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29029 + pts count: 1 = new pts: 29030. update pts: 28955 < new pts 29030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29029 + pts count: 1 = new pts: 29030. update pts: 28965 < new pts 29030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29029 + pts count: 1 = new pts: 29030. update pts: 28981 < new pts 29030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29029 + pts count: 1 = new pts: 29030. update pts: 28987 < new pts 29030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29029 + pts count: 1 = new pts: 29030. update pts: 28988 < new pts 29030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29029 + pts count: 1 = new pts: 29030. update pts: 28989 < new pts 29030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29029 + pts count: 1 = new pts: 29030. update pts: 28992 < new pts 29030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29029 + pts count: 1 = new pts: 29030. update pts: 28999 < new pts 29030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29029 + pts count: 1 = new pts: 29030. update pts: 29006 < new pts 29030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29029 + pts count: 1 = new pts: 29030. update pts: 29009 < new pts 29030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29029 + pts count: 1 = new pts: 29030. update pts: 29012 < new pts 29030, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28115 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28875 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28876 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28877 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28878 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28879 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28884 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28885 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28886 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28894 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28896 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28905 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28909 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28915 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28918 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28921 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28925 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28929 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28931 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28934 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28935 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28986 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 28985 < new pts 29027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29026 + pts count: 1 = new pts: 29027. update pts: 29004 < new pts 29027, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1044394 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29030, pts count: 1, new pts: 29031 < update pts: 29032, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29030, pts count: 1, new pts: 29031 < update pts: 29033, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1207048 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29033 + pts count: 1 = new pts: 29034. update pts: 28115 < new pts 29034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29033 + pts count: 1 = new pts: 29034. update pts: 28943 < new pts 29034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29033 + pts count: 1 = new pts: 29034. update pts: 28944 < new pts 29034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29033 + pts count: 1 = new pts: 29034. update pts: 28947 < new pts 29034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29033 + pts count: 1 = new pts: 29034. update pts: 28955 < new pts 29034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29033 + pts count: 1 = new pts: 29034. update pts: 28965 < new pts 29034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29033 + pts count: 1 = new pts: 29034. update pts: 28981 < new pts 29034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29033 + pts count: 1 = new pts: 29034. update pts: 28987 < new pts 29034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29033 + pts count: 1 = new pts: 29034. update pts: 28988 < new pts 29034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29033 + pts count: 1 = new pts: 29034. update pts: 28989 < new pts 29034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29033 + pts count: 1 = new pts: 29034. update pts: 28992 < new pts 29034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29033 + pts count: 1 = new pts: 29034. update pts: 28999 < new pts 29034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29033 + pts count: 1 = new pts: 29034. update pts: 29006 < new pts 29034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29033 + pts count: 1 = new pts: 29034. update pts: 29009 < new pts 29034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29033 + pts count: 1 = new pts: 29034. update pts: 29012 < new pts 29034, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28115 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28875 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28876 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28877 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28878 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28879 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28884 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28885 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28886 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28894 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28896 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28905 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28909 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28915 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28918 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28921 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28925 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28929 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28931 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28934 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28935 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28986 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 28985 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 29004 < new pts 29032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29031 + pts count: 1 = new pts: 29032. update pts: 29031 < new pts 29032, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29034 + pts count: 1 = new pts: 29035, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1060406 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29034, pts count: 1, new pts: 29035 < update pts: 29037, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1211395 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29037 + pts count: 1 = new pts: 29038. update pts: 28115 < new pts 29038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29037 + pts count: 1 = new pts: 29038. update pts: 28943 < new pts 29038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29037 + pts count: 1 = new pts: 29038. update pts: 28944 < new pts 29038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29037 + pts count: 1 = new pts: 29038. update pts: 28947 < new pts 29038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29037 + pts count: 1 = new pts: 29038. update pts: 28955 < new pts 29038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29037 + pts count: 1 = new pts: 29038. update pts: 28965 < new pts 29038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29037 + pts count: 1 = new pts: 29038. update pts: 28981 < new pts 29038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29037 + pts count: 1 = new pts: 29038. update pts: 28987 < new pts 29038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29037 + pts count: 1 = new pts: 29038. update pts: 28988 < new pts 29038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29037 + pts count: 1 = new pts: 29038. update pts: 28989 < new pts 29038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29037 + pts count: 1 = new pts: 29038. update pts: 28992 < new pts 29038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29037 + pts count: 1 = new pts: 29038. update pts: 28999 < new pts 29038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29037 + pts count: 1 = new pts: 29038. update pts: 29006 < new pts 29038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29037 + pts count: 1 = new pts: 29038. update pts: 29009 < new pts 29038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29037 + pts count: 1 = new pts: 29038. update pts: 29012 < new pts 29038, channel id: -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28115 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28875 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28876 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28877 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28878 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28879 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28884 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28885 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28886 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28894 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28896 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28905 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28909 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28915 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28918 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28921 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28925 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28929 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28931 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28934 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28935 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28986 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 28985 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 29004 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29035 + pts count: 1 = new pts: 29036. update pts: 29031 < new pts 29036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29035 + pts count: 1 = new pts: 29036, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29038 + pts count: 1 = new pts: 29039, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1068787 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29038, pts count: 1, new pts: 29039 < update pts: 29041, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29041 + pts count: 1 = new pts: 29042. update pts: 28115 < new pts 29042, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29041 + pts count: 1 = new pts: 29042. update pts: 28943 < new pts 29042, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29041 + pts count: 1 = new pts: 29042. update pts: 28944 < new pts 29042, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29041 + pts count: 1 = new pts: 29042. update pts: 28947 < new pts 29042, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29041 + pts count: 1 = new pts: 29042. update pts: 28955 < new pts 29042, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29041 + pts count: 1 = new pts: 29042. update pts: 28965 < new pts 29042, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29041 + pts count: 1 = new pts: 29042. update pts: 28981 < new pts 29042, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29041 + pts count: 1 = new pts: 29042. update pts: 28987 < new pts 29042, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29041 + pts count: 1 = new pts: 29042. update pts: 28988 < new pts 29042, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29041 + pts count: 1 = new pts: 29042. update pts: 28989 < new pts 29042, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29041 + pts count: 1 = new pts: 29042. update pts: 28992 < new pts 29042, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29041 + pts count: 1 = new pts: 29042. update pts: 28999 < new pts 29042, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29041 + pts count: 1 = new pts: 29042. update pts: 29006 < new pts 29042, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29041 + pts count: 1 = new pts: 29042. update pts: 29009 < new pts 29042, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29041 + pts count: 1 = new pts: 29042. update pts: 29012 < new pts 29042, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1218766 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29039, pts count: 1, new pts: 29040 < update pts: 29043, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28115 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28875 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28876 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28877 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28878 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28879 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28884 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28885 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28886 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28894 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28896 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28905 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28909 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28915 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28918 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28921 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28925 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28929 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28931 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28934 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28935 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28986 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28985 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 29004 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 29031 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 29036 < new pts 29044, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1071088 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28115 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28943 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28944 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28947 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28955 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28965 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28981 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28987 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28988 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28989 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28992 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28999 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 29006 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 29009 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 29012 < new pts 29044, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1223432 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28115 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28875 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28876 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28877 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28878 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28879 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28884 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28885 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28886 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28894 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28896 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28905 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28909 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28915 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28918 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28921 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28925 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28929 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28931 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28934 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28935 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28986 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 28985 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 29004 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 29031 < new pts 29044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29043 + pts count: 1 = new pts: 29044. update pts: 29036 < new pts 29044, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1073942 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29044, pts count: 1, new pts: 29045 < update pts: 29046, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29047 + pts count: 1 = new pts: 29048. update pts: 28115 < new pts 29048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29047 + pts count: 1 = new pts: 29048. update pts: 28943 < new pts 29048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29047 + pts count: 1 = new pts: 29048. update pts: 28944 < new pts 29048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29047 + pts count: 1 = new pts: 29048. update pts: 28947 < new pts 29048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29047 + pts count: 1 = new pts: 29048. update pts: 28955 < new pts 29048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29047 + pts count: 1 = new pts: 29048. update pts: 28965 < new pts 29048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29047 + pts count: 1 = new pts: 29048. update pts: 28981 < new pts 29048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29047 + pts count: 1 = new pts: 29048. update pts: 28987 < new pts 29048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29047 + pts count: 1 = new pts: 29048. update pts: 28988 < new pts 29048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29047 + pts count: 1 = new pts: 29048. update pts: 28989 < new pts 29048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29047 + pts count: 1 = new pts: 29048. update pts: 28992 < new pts 29048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29047 + pts count: 1 = new pts: 29048. update pts: 28999 < new pts 29048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29047 + pts count: 1 = new pts: 29048. update pts: 29006 < new pts 29048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29047 + pts count: 1 = new pts: 29048. update pts: 29009 < new pts 29048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29047 + pts count: 1 = new pts: 29048. update pts: 29012 < new pts 29048, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29049 + pts count: 1 = new pts: 29050, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1079618 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29050, pts count: 1, new pts: 29051 < update pts: 29053, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29053 + pts count: 1 = new pts: 29054. update pts: 28115 < new pts 29054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29053 + pts count: 1 = new pts: 29054. update pts: 28943 < new pts 29054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29053 + pts count: 1 = new pts: 29054. update pts: 28944 < new pts 29054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29053 + pts count: 1 = new pts: 29054. update pts: 28947 < new pts 29054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29053 + pts count: 1 = new pts: 29054. update pts: 28955 < new pts 29054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29053 + pts count: 1 = new pts: 29054. update pts: 28965 < new pts 29054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29053 + pts count: 1 = new pts: 29054. update pts: 28981 < new pts 29054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29053 + pts count: 1 = new pts: 29054. update pts: 28987 < new pts 29054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29053 + pts count: 1 = new pts: 29054. update pts: 28988 < new pts 29054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29053 + pts count: 1 = new pts: 29054. update pts: 28989 < new pts 29054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29053 + pts count: 1 = new pts: 29054. update pts: 28992 < new pts 29054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29053 + pts count: 1 = new pts: 29054. update pts: 28999 < new pts 29054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29053 + pts count: 1 = new pts: 29054. update pts: 29006 < new pts 29054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29053 + pts count: 1 = new pts: 29054. update pts: 29009 < new pts 29054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29053 + pts count: 1 = new pts: 29054. update pts: 29012 < new pts 29054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29053 + pts count: 1 = new pts: 29054. update pts: 29051 < new pts 29054, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1226749 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28115 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28875 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28876 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28877 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28878 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28879 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28884 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28885 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28886 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28894 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28896 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28905 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28909 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28915 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28918 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28921 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28925 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28929 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28931 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28934 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28935 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28986 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 28985 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 29004 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 29031 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29048 + pts count: 1 = new pts: 29049. update pts: 29036 < new pts 29049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29048 + pts count: 1 = new pts: 29049, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1082312 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1236325 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29054, pts count: 1, new pts: 29055 < update pts: 29057, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 28115 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 28943 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 28944 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 28947 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 28955 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 28965 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 28981 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 28987 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 28988 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 28989 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 28992 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 28999 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 29006 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 29009 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 29012 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 29051 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 29054 < new pts 29058, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29057 + pts count: 1 = new pts: 29058. update pts: 29055 < new pts 29058, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28115 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28875 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28876 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28877 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28878 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28879 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28884 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28885 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28886 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28894 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28896 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28905 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28909 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28915 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28918 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28921 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28925 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28929 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28931 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28934 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28935 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28986 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 28985 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 29004 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 29031 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 29036 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 29049 < new pts 29057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29056 + pts count: 1 = new pts: 29057. update pts: 29056 < new pts 29057, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1082466 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29058, pts count: 1, new pts: 29059 < update pts: 29060, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1250935 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 28115 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 28943 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 28944 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 28947 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 28955 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 28965 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 28981 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 28987 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 28988 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 28989 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 28992 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 28999 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 29006 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 29009 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 29012 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 29051 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 29054 < new pts 29061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29060 + pts count: 1 = new pts: 29061. update pts: 29055 < new pts 29061, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29060 + pts count: 1 = new pts: 29061, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29059, pts count: 1, new pts: 29060 < update pts: 29062, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28115 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28875 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28876 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28877 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28878 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28879 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28884 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28885 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28886 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28894 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28896 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28905 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28909 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28915 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28918 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28921 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28925 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28929 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28931 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28934 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28935 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28986 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28985 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 29004 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 29031 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 29036 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 29049 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 29056 < new pts 29063, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1085188 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28115 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28943 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28944 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28947 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28955 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28965 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28981 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28987 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28988 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28989 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28992 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 28999 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 29006 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 29009 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 29012 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 29051 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 29054 < new pts 29063, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29062 + pts count: 1 = new pts: 29063. update pts: 29055 < new pts 29063, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29064 + pts count: 1 = new pts: 29065, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1261005 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28115 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28875 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28876 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28877 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28878 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28879 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28884 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28885 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28886 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28894 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28896 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28905 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28909 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28915 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28918 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28921 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28925 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28929 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28931 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28934 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28935 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28986 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 28985 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 29004 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 29031 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 29036 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 29049 < new pts 29065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29064 + pts count: 1 = new pts: 29065. update pts: 29056 < new pts 29065, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1087126 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29064, pts count: 1, new pts: 29065 < update pts: 29067, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29066, pts count: 1, new pts: 29067 < update pts: 29068, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 28115 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 28943 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 28944 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 28947 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 28955 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 28965 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 28981 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 28987 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 28988 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 28989 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 28992 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 28999 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 29006 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 29009 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 29012 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 29051 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 29054 < new pts 29069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29068 + pts count: 1 = new pts: 29069. update pts: 29055 < new pts 29069, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1264089 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1092026 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29068, pts count: 1, new pts: 29069 < update pts: 29071, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28115 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28875 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28876 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28877 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28878 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28879 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28884 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28885 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28886 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28894 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28896 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28905 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28909 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28915 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28918 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28921 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28925 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28929 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28931 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28934 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28935 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28986 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 28985 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 29004 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 29031 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 29036 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 29049 < new pts 29073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29072 + pts count: 1 = new pts: 29073. update pts: 29056 < new pts 29073, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 28115 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 28943 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 28944 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 28947 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 28955 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 28965 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 28981 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 28987 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 28988 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 28989 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 28992 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 28999 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 29006 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 29009 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 29012 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 29051 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 29054 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29070 + pts count: 1 = new pts: 29071. update pts: 29055 < new pts 29071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29070, pts count: 1, new pts: 29071 < update pts: 29072, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29072 + pts count: 1 = new pts: 29073, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1263961 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28115 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28875 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28876 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28877 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28878 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28879 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28884 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28885 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28886 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28894 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28896 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28905 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28909 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28915 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28918 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28921 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28925 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28929 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28931 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28934 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28935 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28986 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28985 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 29004 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 29031 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 29036 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 29049 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 29056 < new pts 29074, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1087300 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1267585 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28115 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28943 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28944 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28947 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28955 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28965 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28981 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28987 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28988 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28989 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28992 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 28999 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 29006 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 29009 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 29012 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 29051 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 29054 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 29055 < new pts 29074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29073 + pts count: 1 = new pts: 29074. update pts: 29072 < new pts 29074, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28115 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28875 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28876 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28877 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28878 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28879 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28884 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28885 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28886 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28894 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28896 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28905 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28909 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28915 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28918 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28921 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28925 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28929 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28931 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28934 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28935 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28986 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 28985 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 29004 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 29031 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 29036 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 29049 < new pts 29075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29074 + pts count: 1 = new pts: 29075. update pts: 29056 < new pts 29075, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29074, pts count: 1, new pts: 29075 < update pts: 29077, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1090765 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 28115 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 28943 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 28944 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 28947 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 28955 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 28965 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 28981 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 28987 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 28988 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 28989 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 28992 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 28999 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 29006 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 29009 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 29012 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 29051 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 29054 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 29055 < new pts 29078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29077 + pts count: 1 = new pts: 29078. update pts: 29072 < new pts 29078, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1279169 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28115 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28875 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28876 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28877 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28878 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28879 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28884 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28885 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28886 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28894 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28896 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28905 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28909 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28915 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28918 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28921 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28925 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28929 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28931 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28934 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28935 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28986 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 28985 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 29004 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 29031 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 29036 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 29049 < new pts 29080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29079 + pts count: 1 = new pts: 29080. update pts: 29056 < new pts 29080, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1095644 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29081, pts count: 1, new pts: 29082 < update pts: 29083, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 28115 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 28943 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 28944 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 28947 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 28955 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 28965 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 28981 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 28987 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 28988 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 28989 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 28992 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 28999 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 29006 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 29009 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 29012 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 29051 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 29054 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 29055 < new pts 29085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29084 + pts count: 1 = new pts: 29085. update pts: 29072 < new pts 29085, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29084, pts count: 1, new pts: 29085 < update pts: 29086, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1284997 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29083, pts count: 1, new pts: 29084 < update pts: 29087, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1091403 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28115 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28875 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28876 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28877 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28878 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28879 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28884 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28885 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28886 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28894 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28896 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28905 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28909 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28915 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28918 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28921 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28925 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28929 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28931 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28934 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28935 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28986 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 28985 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 29004 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 29031 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 29036 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 29049 < new pts 29088, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29087 + pts count: 1 = new pts: 29088. update pts: 29056 < new pts 29088, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 28115 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 28943 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 28944 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 28947 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 28955 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 28965 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 28981 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 28987 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 28988 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 28989 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 28992 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 28999 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 29006 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 29009 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 29012 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 29051 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 29054 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 29055 < new pts 29087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29086 + pts count: 1 = new pts: 29087. update pts: 29072 < new pts 29087, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1287680 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29088, pts count: 1, new pts: 29089 < update pts: 29090, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28115 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28875 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28876 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28877 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28878 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28879 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28884 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28885 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28886 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28894 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28896 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28905 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28909 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28915 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28918 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28921 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28925 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28929 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28931 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28934 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28935 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28986 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 28985 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 29004 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 29031 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 29036 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 29049 < new pts 29091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29090 + pts count: 1 = new pts: 29091. update pts: 29056 < new pts 29091, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1096126 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29089, pts count: 1, new pts: 29090 < update pts: 29091, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 28115 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 28943 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 28944 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 28947 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 28955 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 28965 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 28981 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 28987 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 28988 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 28989 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 28992 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 28999 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 29006 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 29009 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 29012 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 29051 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 29054 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 29055 < new pts 29092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29091 + pts count: 1 = new pts: 29092. update pts: 29072 < new pts 29092, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1290929 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29092, pts count: 1, new pts: 29093 < update pts: 29096, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29092, pts count: 1, new pts: 29093 < update pts: 29097, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -Wrote 1107890 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28115 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28875 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28876 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -ResponseHandler, danogentili: Received updateShortMessage. -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28877 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28878 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28879 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28884 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28885 < new pts 29098, channel id: -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28886 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28894 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28896 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28905 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28909 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28915 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28918 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28921 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28925 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28929 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28931 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Received updates. -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28934 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28935 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28986 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 28985 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 29004 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 29031 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 29036 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 29049 < new pts 29098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29097 + pts count: 1 = new pts: 29098. update pts: 29056 < new pts 29098, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 28115 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 28943 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 28944 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 28947 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 28955 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 28965 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 28981 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 28987 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 28988 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 28989 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 28992 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 28999 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 29006 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 29009 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 29012 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 29051 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 29054 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 29055 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29093 + pts count: 1 = new pts: 29094. update pts: 29072 < new pts 29094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29093 + pts count: 1 = new pts: 29094, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29094 + pts count: 1 = new pts: 29095, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1291666 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -Wrote 1107228 bytes -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29099 + pts count: 1 = new pts: 29100, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29100 + pts count: 1 = new pts: 29101, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 28115 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 28943 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 28944 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 28947 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 28955 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 28965 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 28981 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 28987 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 28988 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 28989 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 28992 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 28999 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 29006 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 29009 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 29012 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 29051 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 29054 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 29055 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 29072 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 29094 < new pts 29102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29101 + pts count: 1 = new pts: 29102. update pts: 29095 < new pts 29102, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28115 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28875 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28876 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28877 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28878 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28879 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28884 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28885 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28886 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28894 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28896 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28905 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28909 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28915 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28918 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28921 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28925 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28929 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28931 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28934 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28935 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28986 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 28985 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 29004 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 29031 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 29036 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 29049 < new pts 29099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29098 + pts count: 1 = new pts: 29099. update pts: 29056 < new pts 29099, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1108860 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1297345 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 28115 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 28943 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 28944 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 28947 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 28955 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 28965 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 28981 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 28987 < new pts 29103, channel id: -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 28988 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 28989 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 28992 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 28999 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 29006 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 29009 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 29012 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 29051 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 29054 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 29055 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 29072 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 29094 < new pts 29103, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29102 + pts count: 1 = new pts: 29103. update pts: 29095 < new pts 29103, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29103, pts count: 1, new pts: 29104 < update pts: 29106, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28115 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28875 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28876 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28877 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28878 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28879 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28884 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28885 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28886 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28894 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28896 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28905 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28909 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28915 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28918 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28921 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28925 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28929 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28931 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28934 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28935 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28986 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 28985 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 29004 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 29031 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 29036 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 29049 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 29056 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 29103 < new pts 29107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29106 + pts count: 1 = new pts: 29107. update pts: 29104 < new pts 29107, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1115246 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29107, pts count: 1, new pts: 29108 < update pts: 29109, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 28115 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 28943 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 28944 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 28947 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 28955 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 28965 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 28981 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 28987 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 28988 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 28989 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 28992 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 28999 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 29006 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 29009 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 29012 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 29051 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 29054 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 29055 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 29072 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 29094 < new pts 29110, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29109 + pts count: 1 = new pts: 29110. update pts: 29095 < new pts 29110, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1305294 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29109 + pts count: 1 = new pts: 29110, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28115 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28875 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28876 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28877 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28878 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28879 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28884 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28885 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28886 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28894 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28896 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28905 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28909 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28915 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28918 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28921 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28925 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28929 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28931 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28934 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28935 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28986 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 28985 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 29004 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 29031 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 29036 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 29049 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 29056 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 29103 < new pts 29109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29108 + pts count: 1 = new pts: 29109. update pts: 29104 < new pts 29109, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1113578 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29111, pts count: 1, new pts: 29112 < update pts: 29113, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 28115 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 28943 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 28944 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 28947 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 28955 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 28965 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 28981 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 28987 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 28988 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 28989 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 28992 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 28999 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 29006 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 29009 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 29012 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 29051 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 29054 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 29055 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 29072 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 29094 < new pts 29115, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29114 + pts count: 1 = new pts: 29115. update pts: 29095 < new pts 29115, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1309238 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28115 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28875 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28876 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28877 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28878 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28879 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28884 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28885 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28886 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28894 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28896 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28905 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28909 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28915 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28918 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28921 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28925 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28929 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28931 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28934 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28935 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28986 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 28985 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 29004 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 29031 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 29036 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 29049 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 29056 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 29103 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29112 + pts count: 1 = new pts: 29113. update pts: 29104 < new pts 29113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29112, pts count: 1, new pts: 29113 < update pts: 29115, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29115 + pts count: 1 = new pts: 29116, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1119904 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 28115 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 28943 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 28944 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 28947 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 28955 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 28965 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 28981 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 28987 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 28988 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 28989 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 28992 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 28999 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 29006 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 29009 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 29012 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 29051 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 29054 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 29055 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 29072 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 29094 < new pts 29116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29115 + pts count: 1 = new pts: 29116. update pts: 29095 < new pts 29116, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1309247 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28115 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28875 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28876 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28877 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28878 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28879 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28884 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28885 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28886 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28894 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28896 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28905 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28909 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28915 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28918 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28921 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28925 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28929 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28931 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28934 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28935 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28986 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 28985 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 29004 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 29031 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 29036 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 29049 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 29056 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 29103 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 29104 < new pts 29118, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29117 + pts count: 1 = new pts: 29118. update pts: 29115 < new pts 29118, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1122030 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29120 + pts count: 1 = new pts: 29121, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28115 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28943 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28944 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28947 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28955 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28965 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28981 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28987 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28988 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28989 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28992 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28999 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29006 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29009 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29012 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29051 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29054 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29055 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29072 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29094 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29095 < new pts 29122, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1310053 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1119139 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28115 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28875 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28876 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28877 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28878 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28879 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28884 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28885 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28886 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28894 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28896 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28905 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28909 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28915 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28918 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28921 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28925 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28929 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28931 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28934 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28935 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28986 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 28985 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29004 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29031 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29036 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29049 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29056 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29103 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29104 < new pts 29122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29121 + pts count: 1 = new pts: 29122. update pts: 29115 < new pts 29122, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29121, pts count: 1, new pts: 29122 < update pts: 29124, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 28115 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 28943 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 28944 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 28947 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 28955 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 28965 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 28981 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 28987 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 28988 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 28989 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 28992 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 28999 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 29006 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 29009 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 29012 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 29051 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 29054 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 29055 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 29072 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 29094 < new pts 29125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29124 + pts count: 1 = new pts: 29125. update pts: 29095 < new pts 29125, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1317823 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1118520 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29126, pts count: 1, new pts: 29127 < update pts: 29129, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29127, pts count: 1, new pts: 29128 < update pts: 29130, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28115 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28875 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28876 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28877 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28878 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28879 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28884 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28885 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28886 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28894 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28896 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28905 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28909 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28915 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28918 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28921 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28925 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28929 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28931 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28934 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28935 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28986 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28985 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29004 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29031 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29036 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29049 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29056 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29103 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29104 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29115 < new pts 29131, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28115 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28943 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28944 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28947 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28955 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28965 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28981 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28987 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28988 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28989 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28992 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 28999 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29006 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29009 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29012 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29051 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29054 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29055 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29072 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29094 < new pts 29131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29130 + pts count: 1 = new pts: 29131. update pts: 29095 < new pts 29131, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1117692 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1313705 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28115 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28943 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28944 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28947 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28955 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28965 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28981 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28987 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28988 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28989 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28992 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28999 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29006 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29009 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29012 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29051 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29054 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29055 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29072 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29094 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29095 < new pts 29132, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28115 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28875 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28876 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28877 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28878 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28879 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28884 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28885 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28886 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28894 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28896 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28905 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28909 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28915 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28918 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28921 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28925 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28929 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28931 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28934 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28935 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28986 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 28985 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29004 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29031 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29036 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29049 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29056 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29103 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29104 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29115 < new pts 29132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29131 + pts count: 1 = new pts: 29132. update pts: 29131 < new pts 29132, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1124828 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29133, pts count: 1, new pts: 29134 < update pts: 29135, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29133, pts count: 1, new pts: 29134 < update pts: 29136, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1321264 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 28115 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 28943 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 28944 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 28947 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 28955 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 28965 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 28981 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 28987 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 28988 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 28989 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 28992 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 28999 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 29006 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 29009 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 29012 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 29051 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 29054 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 29055 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 29072 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 29094 < new pts 29137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29136 + pts count: 1 = new pts: 29137. update pts: 29095 < new pts 29137, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28115 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28875 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28876 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28877 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28878 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28879 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28884 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28885 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28886 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28894 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28896 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28905 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28909 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28915 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28918 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28921 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28925 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28929 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28931 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28934 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28935 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28986 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 28985 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 29004 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 29031 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 29036 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 29049 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 29056 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 29103 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 29104 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 29115 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 29131 < new pts 29135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29134 + pts count: 1 = new pts: 29135. update pts: 29134 < new pts 29135, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1120174 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29136, pts count: 1, new pts: 29137 < update pts: 29138, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1331259 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28115 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28943 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28944 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28947 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28955 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28965 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28981 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28987 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28988 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28989 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28992 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28999 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29006 < new pts 29139, channel id: -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29009 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29012 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29051 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29054 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29055 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29072 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29094 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29095 < new pts 29139, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28115 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28875 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28876 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28877 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28878 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28879 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28884 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28885 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28886 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28894 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28896 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28905 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28909 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28915 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28918 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28921 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28925 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28929 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28931 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28934 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28935 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28986 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 28985 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 29004 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 29031 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 29036 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 29049 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 29056 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 29103 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 29104 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 29115 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 29131 < new pts 29138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29137 + pts count: 1 = new pts: 29138. update pts: 29134 < new pts 29138, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1122437 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28115 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28943 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28944 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28947 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28955 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28965 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28981 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28987 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28988 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28989 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28992 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 28999 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29006 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29009 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29012 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29051 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29054 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29055 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29072 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29094 < new pts 29139, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29138 + pts count: 1 = new pts: 29139. update pts: 29095 < new pts 29139, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1333453 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29139, pts count: 1, new pts: 29140 < update pts: 29141, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1126171 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28115 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28875 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28876 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28877 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28878 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28879 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28884 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28885 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28886 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28894 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28896 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28905 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28909 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28915 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28918 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28921 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28925 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28929 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28931 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28934 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28935 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28986 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28985 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29004 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29031 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29036 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29049 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29056 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29103 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29104 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29115 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29131 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29134 < new pts 29142, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28115 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28943 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28944 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28947 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28955 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28965 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28981 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28987 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28988 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28989 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28992 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 28999 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29006 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29009 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29012 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29051 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29054 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29055 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29072 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29094 < new pts 29142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29141 + pts count: 1 = new pts: 29142. update pts: 29095 < new pts 29142, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1336657 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1131622 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28115 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28875 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28876 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28877 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28878 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28879 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28884 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28885 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28886 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28894 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28896 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28905 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28909 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28915 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28918 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28921 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28925 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28929 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28931 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28934 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28935 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28986 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 28985 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 29004 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 29031 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 29036 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 29049 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 29056 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 29103 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 29104 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 29115 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 29131 < new pts 29143, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29142 + pts count: 1 = new pts: 29143. update pts: 29134 < new pts 29143, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28115 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28943 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28944 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28947 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28955 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28965 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28981 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28987 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28988 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28989 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28992 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28999 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29006 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29009 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29012 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29051 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29054 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29055 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29072 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29094 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29095 < new pts 29144, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1336511 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1130145 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28115 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28875 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28876 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28877 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28878 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28879 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28884 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28885 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28886 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28894 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28896 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28905 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28909 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28915 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28918 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28921 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28925 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28929 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28931 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28934 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28935 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28986 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 28985 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29004 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29031 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29036 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29049 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29056 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29103 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29104 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29115 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29131 < new pts 29144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29143 + pts count: 1 = new pts: 29144. update pts: 29134 < new pts 29144, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 28115 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 28943 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 28944 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 28947 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 28955 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 28965 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 28981 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 28987 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 28988 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 28989 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 28992 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 28999 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 29006 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 29009 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 29012 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 29051 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 29054 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 29055 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 29072 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 29094 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29144 + pts count: 1 = new pts: 29145. update pts: 29095 < new pts 29145, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29144 + pts count: 1 = new pts: 29145, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1340157 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1135013 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28115 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28875 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28876 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28877 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28878 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28879 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28884 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28885 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28886 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28894 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28896 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28905 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28909 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28915 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28918 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28921 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28925 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28929 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28931 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28934 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28935 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28986 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 28985 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 29004 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 29031 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 29036 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 29049 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 29056 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 29103 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 29104 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 29115 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 29131 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29145 + pts count: 1 = new pts: 29146. update pts: 29134 < new pts 29146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29145 + pts count: 1 = new pts: 29146, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 28115 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 28943 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 28944 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 28947 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 28955 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 28965 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 28981 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 28987 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 28988 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 28989 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 28992 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 28999 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 29006 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 29009 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 29012 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 29051 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 29054 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 29055 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 29072 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 29094 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 29095 < new pts 29147, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29146 + pts count: 1 = new pts: 29147. update pts: 29145 < new pts 29147, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShortMessage. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1347290 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1136523 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28115 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28875 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28876 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28877 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28878 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28879 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28884 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28885 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28886 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28894 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28896 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28905 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28909 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28915 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28918 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28921 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28925 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28929 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28931 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28934 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28935 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28986 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 28985 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 29004 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 29031 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 29036 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 29049 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 29056 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 29103 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 29104 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 29115 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 29131 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 29134 < new pts 29149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29148 + pts count: 1 = new pts: 29149. update pts: 29146 < new pts 29149, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 28115 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 28943 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 28944 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 28947 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 28955 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 28965 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 28981 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 28987 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 28988 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 28989 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 28992 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 28999 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 29006 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 29009 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 29012 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 29051 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 29054 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 29055 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 29072 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 29094 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 29095 < new pts 29150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29149 + pts count: 1 = new pts: 29150. update pts: 29145 < new pts 29150, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1142121 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1348471 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 28115 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 28943 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 28944 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 28947 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 28955 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 28965 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 28981 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 28987 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 28988 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 28989 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 28992 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 28999 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 29006 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 29009 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 29012 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 29051 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 29054 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 29055 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 29072 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 29094 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 29095 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 29145 < new pts 29153, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29152 + pts count: 1 = new pts: 29153. update pts: 29152 < new pts 29153, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28115 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28875 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28876 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28877 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28878 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28879 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28884 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28885 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28886 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28894 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28896 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28905 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28909 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28915 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28918 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28921 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28925 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28929 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28931 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28934 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28935 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28986 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 28985 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 29004 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 29031 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 29036 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 29049 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 29056 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 29103 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 29104 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 29115 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 29131 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 29134 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 29146 < new pts 29152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29151 + pts count: 1 = new pts: 29152. update pts: 29151 < new pts 29152, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1145424 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28115 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28943 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28944 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28947 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28955 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28965 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28981 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28987 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28988 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28989 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28992 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28999 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29006 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29009 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29012 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29051 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29054 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29055 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29072 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29094 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29095 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29145 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29152 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29153 < new pts 29154, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1358051 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28115 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28875 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28876 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28877 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28878 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28879 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28884 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28885 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28886 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28894 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28896 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28905 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28909 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28915 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28918 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28921 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28925 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28929 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28931 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28934 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28935 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28986 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 28985 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29004 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29031 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29036 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29049 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29056 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29103 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29104 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29115 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29131 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29134 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29146 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29153 + pts count: 1 = new pts: 29154. update pts: 29151 < new pts 29154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29153 + pts count: 1 = new pts: 29154, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1150621 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29154, pts count: 1, new pts: 29155 < update pts: 29156, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 28115 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 28943 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 28944 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 28947 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 28955 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 28965 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 28981 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 28987 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 28988 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 28989 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 28992 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 28999 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 29006 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 29009 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 29012 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 29051 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 29054 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 29055 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 29072 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 29094 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 29095 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 29145 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 29152 < new pts 29157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29156 + pts count: 1 = new pts: 29157. update pts: 29153 < new pts 29157, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1363837 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28115 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28875 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28876 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28877 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28878 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28879 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28884 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28885 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28886 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28894 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28896 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28905 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28909 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28915 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28918 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28921 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28925 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28929 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28931 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28934 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28935 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28986 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 28985 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 29004 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 29031 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 29036 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 29049 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 29056 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 29103 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 29104 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 29115 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 29131 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 29134 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 29146 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 29151 < new pts 29156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29155 + pts count: 1 = new pts: 29156. update pts: 29154 < new pts 29156, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1155928 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 28115 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 28943 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 28944 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 28947 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 28955 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 28965 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 28981 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 28987 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 28988 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 28989 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 28992 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 28999 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 29006 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 29009 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 29012 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 29051 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 29054 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 29055 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 29072 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 29094 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 29095 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 29145 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 29152 < new pts 29158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29157 + pts count: 1 = new pts: 29158. update pts: 29153 < new pts 29158, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1370635 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1153690 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28115 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28875 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28876 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28877 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28878 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28879 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28884 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28885 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28886 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28894 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28896 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28905 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28909 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28915 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28918 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28921 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28925 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28929 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28931 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28934 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28935 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28986 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28985 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29004 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29031 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29036 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29049 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29056 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29103 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29104 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29115 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29131 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29134 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29146 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29151 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29154 < new pts 29159, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28115 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28943 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28944 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28947 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28955 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28965 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28981 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28987 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28988 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28989 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28992 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 28999 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29006 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29009 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29012 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29051 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29054 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29055 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29072 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29094 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29095 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29145 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29152 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29158 + pts count: 1 = new pts: 29159. update pts: 29153 < new pts 29159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29158 + pts count: 1 = new pts: 29159, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1159659 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1369339 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 28115 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 28943 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 28944 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 28947 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 28955 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 28965 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 28981 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 28987 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 28988 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 28989 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 28992 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 28999 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 29006 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 29009 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 29012 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 29051 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 29054 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 29055 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 29072 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 29094 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 29095 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 29145 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 29152 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 29153 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 29159 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29160 + pts count: 1 = new pts: 29161. update pts: 29160 < new pts 29161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29160 + pts count: 1 = new pts: 29161, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28115 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28875 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28876 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28877 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28878 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28879 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28884 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28885 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28886 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28894 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28896 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28905 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28909 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28915 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28918 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28921 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28925 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28929 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28931 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28934 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28935 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28986 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 28985 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 29004 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 29031 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 29036 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 29049 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 29056 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 29103 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 29104 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 29115 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 29131 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 29134 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 29146 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 29151 < new pts 29160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29159 + pts count: 1 = new pts: 29160. update pts: 29154 < new pts 29160, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1170545 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 28115 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 28943 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 28944 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 28947 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 28955 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 28965 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 28981 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 28987 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 28988 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 28989 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 28992 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 28999 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 29006 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 29009 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 29012 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 29051 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 29054 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 29055 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 29072 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 29094 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 29095 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 29145 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 29152 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 29153 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 29159 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 29160 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 29161 < new pts 29163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29162 + pts count: 1 = new pts: 29163. update pts: 29162 < new pts 29163, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1375162 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28115 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28875 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28876 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28877 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28878 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28879 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28884 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28885 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28886 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28894 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28896 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28905 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28909 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28915 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28918 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28921 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28925 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28929 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28931 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28934 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28935 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28986 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 28985 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 29004 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 29031 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 29036 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 29049 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 29056 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 29103 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 29104 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 29115 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 29131 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 29134 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 29146 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 29151 < new pts 29164, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29163 + pts count: 1 = new pts: 29164. update pts: 29154 < new pts 29164, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1175813 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 28115 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 28943 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 28944 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 28947 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 28955 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 28965 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 28981 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 28987 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 28988 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 28989 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 28992 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 28999 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 29006 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 29009 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 29012 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 29051 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 29054 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 29055 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 29072 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 29094 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 29095 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 29145 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 29152 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 29153 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 29159 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 29160 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 29161 < new pts 29165, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29164 + pts count: 1 = new pts: 29165. update pts: 29162 < new pts 29165, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1379288 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28115 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28875 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28876 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28877 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28878 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28879 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28884 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28885 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28886 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28894 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28896 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28905 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28909 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28915 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28918 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28921 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28925 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28929 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28931 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28934 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28935 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28986 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 28985 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 29004 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 29031 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 29036 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 29049 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 29056 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 29103 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 29104 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 29115 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 29131 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 29134 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 29146 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 29151 < new pts 29166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29165 + pts count: 1 = new pts: 29166. update pts: 29154 < new pts 29166, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1180084 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29166 + pts count: 1 = new pts: 29167, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 28115 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 28943 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 28944 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 28947 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 28955 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 28965 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 28981 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 28987 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 28988 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 28989 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 28992 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 28999 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 29006 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 29009 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 29012 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 29051 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 29054 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 29055 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 29072 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 29094 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 29095 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 29145 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 29152 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 29153 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 29159 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 29160 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 29161 < new pts 29168, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29167 + pts count: 1 = new pts: 29168. update pts: 29162 < new pts 29168, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1379690 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28115 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28875 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28876 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28877 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28878 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28879 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28884 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28885 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28886 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28894 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28896 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28905 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28909 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28915 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28918 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28921 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28925 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28929 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28931 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28934 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28935 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28986 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 28985 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 29004 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 29031 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 29036 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 29049 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 29056 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 29103 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 29104 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 29115 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 29131 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 29134 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 29146 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 29151 < new pts 29167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29166 + pts count: 1 = new pts: 29167. update pts: 29154 < new pts 29167, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29166, pts count: 1, new pts: 29167 < update pts: 29170, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1178338 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29169, pts count: 1, new pts: 29170 < update pts: 29172, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29168, pts count: 1, new pts: 29169 < update pts: 29173, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 28115 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 28943 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 28944 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 28947 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 28955 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 28965 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 28981 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 28987 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 28988 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 28989 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 28992 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 28999 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 29006 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 29009 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 29012 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 29051 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 29054 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 29055 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 29072 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 29094 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 29095 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 29145 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 29152 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 29153 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 29159 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 29160 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 29161 < new pts 29174, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29173 + pts count: 1 = new pts: 29174. update pts: 29162 < new pts 29174, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1386386 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28115 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28875 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28876 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28877 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28878 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28879 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDraftMessage... -UpdateHandler, danogentili: Saving an update of type updateDraftMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28884 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28885 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28886 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28894 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28896 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28905 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28909 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28915 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28918 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28921 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28925 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28929 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28931 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28934 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28935 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28986 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 28985 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 29004 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 29031 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 29036 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 29049 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 29056 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 29103 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 29104 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 29115 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 29131 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 29134 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 29146 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 29151 < new pts 29173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29172 + pts count: 1 = new pts: 29173. update pts: 29154 < new pts 29173, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1179271 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 28115 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 28943 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 28944 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 28947 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 28955 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 28965 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 28981 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 28987 < new pts 29175, channel id: -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 28988 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 28989 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 28992 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 28999 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 29006 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 29009 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 29012 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 29051 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 29054 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 29055 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 29072 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 29094 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 29095 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 29145 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 29152 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 29153 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 29159 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 29160 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 29161 < new pts 29175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29174 + pts count: 1 = new pts: 29175. update pts: 29162 < new pts 29175, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1388269 bytes -Wrote 1181506 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 28115 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 28943 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 28944 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 28947 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 28955 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 28965 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 28981 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 28987 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 28988 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 28989 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 28992 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 28999 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 29006 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 29009 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 29012 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 29051 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 29054 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 29055 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 29072 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 29094 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 29095 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 29145 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 29152 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 29153 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 29159 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 29160 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 29161 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29177 + pts count: 1 = new pts: 29178. update pts: 29162 < new pts 29178, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Applying pts. current pts: 29177 + pts count: 1 = new pts: 29178, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29178 + pts count: 1 = new pts: 29179, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1185481 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 28115 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 28943 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 28944 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 28947 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 28955 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 28965 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 28981 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 28987 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 28988 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 28989 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 28992 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 28999 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29006 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29009 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29012 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29051 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29054 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29055 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29072 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29094 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29095 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29145 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29152 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29153 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29159 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29160 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29161 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29162 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29178 < new pts 29182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29181 + pts count: 1 = new pts: 29182. update pts: 29179 < new pts 29182, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1189101 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 28115 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 28943 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 28944 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 28947 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 28955 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 28965 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 28981 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 28987 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 28988 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 28989 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 28992 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 28999 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29006 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29009 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29012 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29051 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29054 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29055 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29072 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29094 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29095 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29145 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29152 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29153 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29159 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29160 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29161 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29162 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29178 < new pts 29185, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29184 + pts count: 1 = new pts: 29185. update pts: 29179 < new pts 29185, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1188088 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 28115 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 28943 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 28944 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 28947 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 28955 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 28965 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 28981 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 28987 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 28988 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 28989 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 28992 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 28999 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29006 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29009 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29012 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29051 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29054 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29055 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29072 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29094 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29095 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29145 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29152 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29153 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29159 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29160 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29161 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29162 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29178 < new pts 29187, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29186 + pts count: 1 = new pts: 29187. update pts: 29179 < new pts 29187, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1188245 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29186, pts count: 1, new pts: 29187 < update pts: 29188, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 28115 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 28943 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 28944 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 28947 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 28955 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 28965 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 28981 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 28987 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 28988 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 28989 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 28992 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 28999 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29006 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29009 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29012 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29051 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29054 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29055 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29072 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29094 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29095 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29145 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29152 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29153 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29159 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29160 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29161 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29162 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29178 < new pts 29189, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29188 + pts count: 1 = new pts: 29189. update pts: 29179 < new pts 29189, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1185794 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 28115 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 28943 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 28944 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 28947 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 28955 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 28965 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 28981 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 28987 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 28988 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 28989 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 28992 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 28999 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29006 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29009 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29012 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29051 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29054 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29055 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29072 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29094 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29095 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29145 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29152 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29153 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29159 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29160 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29161 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29162 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29178 < new pts 29190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29189 + pts count: 1 = new pts: 29190. update pts: 29179 < new pts 29190, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1185239 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 28115 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 28943 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 28944 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 28947 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 28955 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 28965 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 28981 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 28987 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 28988 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 28989 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 28992 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 28999 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29006 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29009 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29012 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29051 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29054 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29055 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29072 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29094 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29095 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29145 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29152 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29153 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29159 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29160 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29161 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29162 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29178 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29190 + pts count: 1 = new pts: 29191. update pts: 29179 < new pts 29191, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29190 + pts count: 1 = new pts: 29191, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29191 + pts count: 1 = new pts: 29192, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1189602 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 28115 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 28943 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 28944 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 28947 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 28955 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 28965 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 28981 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 28987 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 28988 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 28989 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 28992 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 28999 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29006 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29009 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29012 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29051 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29054 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29055 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29072 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29094 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29095 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29145 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29152 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29153 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29159 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29160 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29161 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29162 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29178 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29179 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29191 < new pts 29193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29192 + pts count: 1 = new pts: 29193. update pts: 29192 < new pts 29193, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1192729 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 28115 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 28943 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 28944 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 28947 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 28955 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 28965 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 28981 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 28987 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 28988 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 28989 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 28992 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 28999 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29006 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29009 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29012 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29051 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29054 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29055 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29072 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29094 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29095 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29145 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29152 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29153 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29159 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29160 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29161 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29162 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29178 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29179 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29191 < new pts 29196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29195 + pts count: 1 = new pts: 29196. update pts: 29192 < new pts 29196, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1193387 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 28115 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 28943 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 28944 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 28947 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 28955 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 28965 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 28981 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 28987 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 28988 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 28989 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 28992 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 28999 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29006 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29009 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29012 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29051 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29054 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29055 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29072 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29094 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29095 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29145 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29152 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29153 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29159 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29160 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29161 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29162 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29178 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29179 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29191 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29192 < new pts 29198, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29197 + pts count: 1 = new pts: 29198. update pts: 29197 < new pts 29198, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1196929 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29198, pts count: 1, new pts: 29199 < update pts: 29200, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 28115 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 28943 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 28944 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 28947 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 28955 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 28965 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 28981 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 28987 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 28988 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 28989 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 28992 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 28999 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29006 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29009 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29012 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29051 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29054 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29055 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29072 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29094 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29095 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29145 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29152 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29153 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29159 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29160 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29161 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29162 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29178 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29179 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29191 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29192 < new pts 29201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29200 + pts count: 1 = new pts: 29201. update pts: 29197 < new pts 29201, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1199646 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29201 + pts count: 1 = new pts: 29202, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28115 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28943 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28944 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28947 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28955 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28965 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28981 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28987 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28988 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28989 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28992 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28999 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29006 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29009 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29012 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29051 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29054 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29055 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29072 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29094 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29095 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29145 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29152 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29153 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29159 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29160 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29161 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29162 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29178 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29179 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29191 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29192 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29197 < new pts 29203, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1200213 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28115 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28943 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28944 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28947 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28955 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28965 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28981 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28987 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28988 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28989 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28992 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 28999 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29006 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29009 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29012 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29051 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29054 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29055 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29072 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29094 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29095 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29145 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29152 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29153 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29159 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29160 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29161 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29162 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29178 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29179 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29191 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29192 < new pts 29203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29202 + pts count: 1 = new pts: 29203. update pts: 29197 < new pts 29203, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1199339 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 28115 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 28943 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 28944 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 28947 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 28955 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 28965 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 28981 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 28987 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 28988 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 28989 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 28992 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 28999 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29006 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29009 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29012 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29051 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29054 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29055 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29072 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29094 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29095 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29145 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29152 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29153 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29159 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29160 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29161 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29162 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29178 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29179 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29191 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29192 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29204 + pts count: 1 = new pts: 29205. update pts: 29197 < new pts 29205, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29204 + pts count: 1 = new pts: 29205, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29205 + pts count: 1 = new pts: 29206, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1203507 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 28115 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 28943 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 28944 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 28947 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 28955 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 28965 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 28981 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 28987 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 28988 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 28989 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 28992 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 28999 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29006 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29009 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29012 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29051 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29054 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29055 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29072 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29094 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29095 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29145 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29152 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29153 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29159 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29160 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29161 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29162 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29178 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29179 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29191 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29192 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29197 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29206 + pts count: 1 = new pts: 29207. update pts: 29205 < new pts 29207, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29206 + pts count: 1 = new pts: 29207, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29207 + pts count: 1 = new pts: 29208, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1205575 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 28115 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 28943 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 28944 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 28947 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 28955 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 28965 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 28981 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 28987 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 28988 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 28989 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 28992 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 28999 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29006 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29009 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29012 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29051 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29054 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29055 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29072 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29094 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29095 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29145 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29152 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29153 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29159 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29160 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29161 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29162 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29178 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29179 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29191 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29192 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29197 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29205 < new pts 29209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29208 + pts count: 1 = new pts: 29209. update pts: 29207 < new pts 29209, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1211091 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29211 + pts count: 1 = new pts: 29212, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 28115 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 28943 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 28944 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 28947 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 28955 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 28965 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 28981 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 28987 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 28988 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 28989 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 28992 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 28999 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29006 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29009 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29012 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29051 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29054 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29055 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29072 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29094 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29095 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29145 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29152 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29153 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29159 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29160 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29161 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29162 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29178 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29179 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29191 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29192 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29197 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29205 < new pts 29213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29212 + pts count: 1 = new pts: 29213. update pts: 29207 < new pts 29213, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1209267 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29212, pts count: 1, new pts: 29213 < update pts: 29214, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 28115 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 28943 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 28944 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 28947 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 28955 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 28965 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 28981 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 28987 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 28988 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 28989 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 28992 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 28999 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29006 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29009 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29012 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29051 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29054 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29055 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29072 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29094 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29095 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29145 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29152 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29153 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29159 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29160 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29161 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29162 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29178 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29179 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29191 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29192 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29197 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29205 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29207 < new pts 29215, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29214 + pts count: 1 = new pts: 29215. update pts: 29213 < new pts 29215, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1213484 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29215 + pts count: 1 = new pts: 29216, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28115 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28943 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28944 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28947 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28955 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28965 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28981 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28987 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28988 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28989 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28992 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28999 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29006 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29009 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29012 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29051 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29054 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29055 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29072 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29094 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29095 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29145 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29152 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29153 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29159 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29160 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29161 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29162 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29178 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29179 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29191 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29192 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29197 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29205 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29207 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29213 < new pts 29217, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1211771 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28115 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28943 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28944 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28947 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28955 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28965 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28981 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28987 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28988 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28989 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28992 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 28999 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29006 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29009 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29012 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29051 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29054 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29055 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29072 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29094 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29095 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29145 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29152 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29153 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29159 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29160 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29161 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29162 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29178 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29179 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29191 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29192 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29197 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29205 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29207 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29216 + pts count: 1 = new pts: 29217. update pts: 29213 < new pts 29217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29216 + pts count: 1 = new pts: 29217, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29217 + pts count: 1 = new pts: 29218, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1214987 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 28115 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 28943 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 28944 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 28947 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 28955 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 28965 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 28981 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 28987 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 28988 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 28989 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 28992 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 28999 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29006 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29009 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29012 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29051 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29054 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29055 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29072 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29094 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29095 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29145 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29152 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29153 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29159 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29160 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29161 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29162 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29178 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29179 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29191 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29192 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29197 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29205 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29207 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29213 < new pts 29220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29219 + pts count: 1 = new pts: 29220. update pts: 29217 < new pts 29220, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1212768 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 28115 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 28943 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 28944 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 28947 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 28955 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 28965 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 28981 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 28987 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 28988 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 28989 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 28992 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 28999 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29006 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29009 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29012 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29051 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29054 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29055 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29072 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29094 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29095 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29145 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29152 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29153 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29159 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29160 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29161 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29162 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29178 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29179 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29191 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29192 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29197 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29205 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29207 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29213 < new pts 29221, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29220 + pts count: 1 = new pts: 29221. update pts: 29217 < new pts 29221, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1218251 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 28115 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 28943 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 28944 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 28947 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 28955 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 28965 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 28981 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 28987 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 28988 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 28989 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 28992 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 28999 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29006 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29009 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29012 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29051 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29054 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29055 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29072 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29094 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29095 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29145 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29152 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29153 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29159 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29160 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29161 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29162 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29178 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29179 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29191 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29192 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29197 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29205 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29207 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29213 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29217 < new pts 29224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29223 + pts count: 1 = new pts: 29224. update pts: 29223 < new pts 29224, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1222572 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 28115 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 28943 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 28944 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 28947 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 28955 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 28965 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 28981 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 28987 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 28988 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 28989 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 28992 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 28999 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29006 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29009 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29012 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29051 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29054 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29055 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29072 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29094 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29095 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29145 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29152 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29153 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29159 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29160 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29161 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29162 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29178 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29179 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29191 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29192 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29197 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29205 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29207 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29213 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29217 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29224 + pts count: 1 = new pts: 29225. update pts: 29223 < new pts 29225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29224 + pts count: 1 = new pts: 29225, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29225 + pts count: 1 = new pts: 29226, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1222272 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 28115 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 28943 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 28944 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 28947 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 28955 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 28965 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 28981 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 28987 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 28988 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 28989 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 28992 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 28999 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29006 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29009 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29012 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29051 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29054 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29055 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29072 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29094 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29095 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29145 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29152 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29153 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29159 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29160 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29161 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29162 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29178 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29179 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29191 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29192 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29197 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29205 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29207 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29213 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29217 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29223 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29225 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29226 + pts count: 1 = new pts: 29227. update pts: 29226 < new pts 29227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29226 + pts count: 1 = new pts: 29227, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29227 + pts count: 1 = new pts: 29228, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1222304 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 28115 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 28943 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 28944 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 28947 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 28955 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 28965 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 28981 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 28987 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 28988 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 28989 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 28992 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 28999 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29006 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29009 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29012 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29051 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29054 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29055 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29072 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29094 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29095 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29145 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29152 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29153 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29159 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29160 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29161 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29162 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29178 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29179 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29191 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29192 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29197 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29205 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29207 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29213 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29217 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29223 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29225 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29226 < new pts 29229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29228 + pts count: 1 = new pts: 29229. update pts: 29227 < new pts 29229, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1227043 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 28115 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 28943 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 28944 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 28947 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 28955 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 28965 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 28981 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 28987 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 28988 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 28989 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 28992 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 28999 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29006 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29009 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29012 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29051 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29054 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29055 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29072 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29094 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29095 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29145 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29152 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29153 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29159 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29160 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29161 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29162 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29178 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29179 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29191 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29192 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29197 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29205 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29207 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29213 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29217 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29223 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29225 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29226 < new pts 29232, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29231 + pts count: 1 = new pts: 29232. update pts: 29227 < new pts 29232, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1227388 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 28115 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 28943 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 28944 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 28947 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 28955 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 28965 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 28981 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 28987 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 28988 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 28989 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 28992 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 28999 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29006 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29009 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29012 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29051 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29054 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29055 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29072 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29094 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29095 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29145 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29152 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29153 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29159 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29160 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29161 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29162 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29178 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29179 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29191 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29192 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29197 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29205 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29207 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29213 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29217 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29223 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29225 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29226 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29227 < new pts 29234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29233 + pts count: 1 = new pts: 29234. update pts: 29233 < new pts 29234, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1232435 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 28115 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 28943 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 28944 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 28947 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 28955 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 28965 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 28981 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 28987 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 28988 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 28989 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 28992 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 28999 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29006 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29009 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29012 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29051 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29054 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29055 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29072 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29094 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29095 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29145 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29152 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29153 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29159 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29160 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29161 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29162 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29178 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29179 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29191 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29192 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29197 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29205 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29207 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29213 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29217 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29223 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29225 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29226 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29227 < new pts 29236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29235 + pts count: 1 = new pts: 29236. update pts: 29233 < new pts 29236, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1233268 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 28115 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 28943 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 28944 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 28947 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 28955 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 28965 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 28981 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 28987 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 28988 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 28989 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 28992 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 28999 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29006 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29009 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29012 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29051 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29054 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29055 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29072 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29094 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29095 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29145 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29152 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29153 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29159 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29160 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29161 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29162 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29178 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29179 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29191 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29192 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29197 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29205 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29207 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29213 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29217 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29223 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29225 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29226 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29227 < new pts 29238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29237 + pts count: 1 = new pts: 29238. update pts: 29233 < new pts 29238, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1238079 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 28115 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 28943 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 28944 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 28947 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 28955 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 28965 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 28981 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 28987 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 28988 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 28989 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 28992 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 28999 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29006 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29009 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29012 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29051 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29054 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29055 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29072 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29094 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29095 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29145 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29152 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29153 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29159 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29160 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29161 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29162 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29178 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29179 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29191 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29192 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29197 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29205 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29207 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29213 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29217 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29223 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29225 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29226 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29227 < new pts 29241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29240 + pts count: 1 = new pts: 29241. update pts: 29233 < new pts 29241, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1237392 bytes -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -PHP Fatal error: Uncaught danog\MadelineProto\RPCErrorException: USER_PRIVACY_RESTRICTED in /home/pwrtelegram/repos/repos/MadelineProto/src/danog/MadelineProto/MTProtoTools/CallHandler.php:106 -Stack trace: -#0 /home/pwrtelegram/repos/repos/MadelineProto/src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php(566): danog\MadelineProto\MTProto->method_call('phone.requestCa...', Array) -#1 /home/pwrtelegram/repos/repos/MadelineProto/src/danog/MadelineProto/APIFactory.php(97): danog\MadelineProto\MTProto->request_call(Array) -#2 /home/pwrtelegram/repos/repos/MadelineProto/calls.php(67): danog\MadelineProto\APIFactory->__call('request_call', Array) -#3 {main} - thrown in /home/pwrtelegram/repos/repos/MadelineProto/src/danog/MadelineProto/MTProtoTools/CallHandler.php on line 106 -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29254 + pts count: 1 = new pts: 29255. update pts: 28115 < new pts 29255, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 637697 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29254 + pts count: 1 = new pts: 29255. update pts: 28115 < new pts 29255, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 643535 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29254 + pts count: 1 = new pts: 29255. update pts: 28115 < new pts 29255, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29254 + pts count: 1 = new pts: 29255, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 654877 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29255 + pts count: 1 = new pts: 29256. update pts: 28115 < new pts 29256, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29255 + pts count: 1 = new pts: 29256. update pts: 29255 < new pts 29256, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 660714 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29255 + pts count: 1 = new pts: 29256. update pts: 28115 < new pts 29256, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29255 + pts count: 1 = new pts: 29256. update pts: 29255 < new pts 29256, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 666553 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29255 + pts count: 1 = new pts: 29256. update pts: 28115 < new pts 29256, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29255 + pts count: 1 = new pts: 29256. update pts: 29255 < new pts 29256, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 672391 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29255 + pts count: 1 = new pts: 29256. update pts: 28115 < new pts 29256, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29255 + pts count: 1 = new pts: 29256. update pts: 29255 < new pts 29256, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29255 + pts count: 1 = new pts: 29256, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 681223 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29256 + pts count: 1 = new pts: 29257. update pts: 28115 < new pts 29257, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29256 + pts count: 1 = new pts: 29257. update pts: 29255 < new pts 29257, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29256, pts count: 1, new pts: 29257 < update pts: 29258, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29257 < new pts 29259, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 702964 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 28115 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29255 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29258 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29257 < new pts 29259, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 708812 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 28115 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29255 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29258 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29257 < new pts 29259, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 714657 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 28115 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29255 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29258 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29257 < new pts 29259, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 720503 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 28115 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29255 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29258 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29257 < new pts 29259, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 726352 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 28115 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29255 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29258 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29257 < new pts 29259, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 732208 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 28115 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29255 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29258 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29257 < new pts 29259, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 738062 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 28115 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29255 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29258 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29257 < new pts 29259, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 743918 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 28115 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29255 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29258 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29257 < new pts 29259, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 749773 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 28115 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29255 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29258 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29257 < new pts 29259, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 755628 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 28115 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29255 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29258 < new pts 29259, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29258 + pts count: 1 = new pts: 29259. update pts: 29257 < new pts 29259, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 770950 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29260 + pts count: 1 = new pts: 29261. update pts: 28115 < new pts 29261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29260 + pts count: 1 = new pts: 29261. update pts: 29255 < new pts 29261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29260 + pts count: 1 = new pts: 29261. update pts: 29258 < new pts 29261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29260 + pts count: 1 = new pts: 29261. update pts: 29257 < new pts 29261, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 782959 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29262 + pts count: 1 = new pts: 29263, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29263 + pts count: 1 = new pts: 29264, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29264 + pts count: 1 = new pts: 29265. update pts: 28115 < new pts 29265, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29264 + pts count: 1 = new pts: 29265. update pts: 29255 < new pts 29265, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29264 + pts count: 1 = new pts: 29265. update pts: 29258 < new pts 29265, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29264 + pts count: 1 = new pts: 29265. update pts: 29257 < new pts 29265, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 798177 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29265, pts count: 1, new pts: 29266 < update pts: 29268, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29268 + pts count: 1 = new pts: 29269. update pts: 28115 < new pts 29269, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29268 + pts count: 1 = new pts: 29269. update pts: 29255 < new pts 29269, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29268 + pts count: 1 = new pts: 29269. update pts: 29258 < new pts 29269, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29268 + pts count: 1 = new pts: 29269. update pts: 29257 < new pts 29269, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 821699 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29269 + pts count: 1 = new pts: 29270. update pts: 28115 < new pts 29270, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29269 + pts count: 1 = new pts: 29270. update pts: 29255 < new pts 29270, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29269 + pts count: 1 = new pts: 29270. update pts: 29258 < new pts 29270, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29269 + pts count: 1 = new pts: 29270. update pts: 29257 < new pts 29270, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 827556 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29269 + pts count: 1 = new pts: 29270. update pts: 28115 < new pts 29270, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29269 + pts count: 1 = new pts: 29270. update pts: 29255 < new pts 29270, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29269 + pts count: 1 = new pts: 29270. update pts: 29258 < new pts 29270, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29269 + pts count: 1 = new pts: 29270. update pts: 29257 < new pts 29270, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 833180 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29269 + pts count: 1 = new pts: 29270. update pts: 28115 < new pts 29270, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29269 + pts count: 1 = new pts: 29270. update pts: 29255 < new pts 29270, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29269 + pts count: 1 = new pts: 29270. update pts: 29258 < new pts 29270, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29269 + pts count: 1 = new pts: 29270. update pts: 29257 < new pts 29270, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 837034 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29269 + pts count: 1 = new pts: 29270. update pts: 28115 < new pts 29270, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29269 + pts count: 1 = new pts: 29270. update pts: 29255 < new pts 29270, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29269 + pts count: 1 = new pts: 29270. update pts: 29258 < new pts 29270, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29269 + pts count: 1 = new pts: 29270. update pts: 29257 < new pts 29270, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 852313 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 28115 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29255 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29258 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29257 < new pts 29272, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 856158 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 28115 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29255 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29258 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29257 < new pts 29272, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 859945 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 28115 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29255 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29258 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29257 < new pts 29272, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 863733 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 28115 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29255 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29258 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29257 < new pts 29272, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 867520 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 28115 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29255 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29258 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29257 < new pts 29272, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 871310 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 28115 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29255 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29258 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29257 < new pts 29272, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 875152 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 28115 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29255 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29258 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29257 < new pts 29272, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 879426 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 28115 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29255 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29258 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29257 < new pts 29272, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 883217 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 28115 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29255 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29258 < new pts 29272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29271 + pts count: 1 = new pts: 29272. update pts: 29257 < new pts 29272, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 890083 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 28115 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29255 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29258 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29257 < new pts 29273, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 894292 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 28115 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29255 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29258 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29257 < new pts 29273, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 898078 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 28115 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29255 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29258 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29257 < new pts 29273, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 901858 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 28115 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29255 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29258 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29257 < new pts 29273, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 906091 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 28115 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29255 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29258 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29257 < new pts 29273, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 909873 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 28115 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29255 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29258 < new pts 29273, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29272 + pts count: 1 = new pts: 29273. update pts: 29257 < new pts 29273, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 916731 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29273 + pts count: 1 = new pts: 29274. update pts: 28115 < new pts 29274, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29273 + pts count: 1 = new pts: 29274. update pts: 29255 < new pts 29274, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29273 + pts count: 1 = new pts: 29274. update pts: 29258 < new pts 29274, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29273 + pts count: 1 = new pts: 29274. update pts: 29257 < new pts 29274, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 924697 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29275 + pts count: 1 = new pts: 29276. update pts: 28115 < new pts 29276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29275 + pts count: 1 = new pts: 29276. update pts: 29255 < new pts 29276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29275 + pts count: 1 = new pts: 29276. update pts: 29258 < new pts 29276, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29275 + pts count: 1 = new pts: 29276. update pts: 29257 < new pts 29276, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 941771 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29279 + pts count: 1 = new pts: 29280. update pts: 28115 < new pts 29280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29279 + pts count: 1 = new pts: 29280. update pts: 29255 < new pts 29280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29279 + pts count: 1 = new pts: 29280. update pts: 29258 < new pts 29280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29279 + pts count: 1 = new pts: 29280. update pts: 29257 < new pts 29280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29279 + pts count: 1 = new pts: 29280, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 950388 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 28115 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29255 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29258 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29257 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29280 < new pts 29281, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 952293 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 28115 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29255 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29258 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29257 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29280 < new pts 29281, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 953108 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 28115 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29255 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29258 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29257 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29280 < new pts 29281, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 953878 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 28115 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29255 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29258 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29257 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29280 < new pts 29281, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 952370 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 28115 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29255 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29258 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29257 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29280 < new pts 29281, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 953141 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 28115 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29255 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29258 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29257 < new pts 29281, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29280 + pts count: 1 = new pts: 29281. update pts: 29280 < new pts 29281, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 956990 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29281 + pts count: 1 = new pts: 29282. update pts: 28115 < new pts 29282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29281 + pts count: 1 = new pts: 29282. update pts: 29255 < new pts 29282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29281 + pts count: 1 = new pts: 29282. update pts: 29258 < new pts 29282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29281 + pts count: 1 = new pts: 29282. update pts: 29257 < new pts 29282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29281 + pts count: 1 = new pts: 29282. update pts: 29280 < new pts 29282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29281, pts count: 1, new pts: 29282 < update pts: 29283, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29282 < new pts 29286, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 971674 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 28115 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29255 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29258 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29257 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29280 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29283 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29282 < new pts 29286, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 972812 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 28115 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29255 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29258 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29257 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29280 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29283 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29282 < new pts 29286, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 971080 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 28115 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29255 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29258 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29257 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29280 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29283 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29282 < new pts 29286, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 968990 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 28115 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29255 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29258 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29257 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29280 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29283 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29282 < new pts 29286, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 969755 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 28115 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29255 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29258 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29257 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29280 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29283 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29282 < new pts 29286, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 970519 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 28115 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29255 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29258 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29257 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29280 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29283 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29282 < new pts 29286, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 971286 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 28115 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29255 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29258 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29257 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29280 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29283 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29282 < new pts 29286, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 972046 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 28115 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29255 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29258 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29257 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29280 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29283 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29282 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 973268 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 28115 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29255 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29258 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29257 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29280 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29283 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29285 + pts count: 1 = new pts: 29286. update pts: 29282 < new pts 29286, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 993310 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29293 + pts count: 1 = new pts: 29294. update pts: 28115 < new pts 29294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29293 + pts count: 1 = new pts: 29294. update pts: 29255 < new pts 29294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29293 + pts count: 1 = new pts: 29294. update pts: 29258 < new pts 29294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29293 + pts count: 1 = new pts: 29294. update pts: 29257 < new pts 29294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29293 + pts count: 1 = new pts: 29294. update pts: 29280 < new pts 29294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29293 + pts count: 1 = new pts: 29294. update pts: 29283 < new pts 29294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29293 + pts count: 1 = new pts: 29294. update pts: 29282 < new pts 29294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29293 + pts count: 1 = new pts: 29294, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29294 + pts count: 1 = new pts: 29295, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29295 + pts count: 1 = new pts: 29296, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1003281 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29296 + pts count: 1 = new pts: 29297. update pts: 28115 < new pts 29297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29296 + pts count: 1 = new pts: 29297. update pts: 29255 < new pts 29297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29296 + pts count: 1 = new pts: 29297. update pts: 29258 < new pts 29297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29296 + pts count: 1 = new pts: 29297. update pts: 29257 < new pts 29297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29296 + pts count: 1 = new pts: 29297. update pts: 29280 < new pts 29297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29296 + pts count: 1 = new pts: 29297. update pts: 29283 < new pts 29297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29296 + pts count: 1 = new pts: 29297. update pts: 29282 < new pts 29297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29296 + pts count: 1 = new pts: 29297. update pts: 29294 < new pts 29297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29296 + pts count: 1 = new pts: 29297. update pts: 29295 < new pts 29297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29296 + pts count: 1 = new pts: 29297. update pts: 29296 < new pts 29297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29296 + pts count: 1 = new pts: 29297, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1000585 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29298 + pts count: 1 = new pts: 29299. update pts: 28115 < new pts 29299, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29298 + pts count: 1 = new pts: 29299. update pts: 29255 < new pts 29299, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29298 + pts count: 1 = new pts: 29299. update pts: 29258 < new pts 29299, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29298 + pts count: 1 = new pts: 29299. update pts: 29257 < new pts 29299, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29298 + pts count: 1 = new pts: 29299. update pts: 29280 < new pts 29299, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29298 + pts count: 1 = new pts: 29299. update pts: 29283 < new pts 29299, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29298 + pts count: 1 = new pts: 29299. update pts: 29282 < new pts 29299, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29298 + pts count: 1 = new pts: 29299. update pts: 29294 < new pts 29299, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29298 + pts count: 1 = new pts: 29299. update pts: 29295 < new pts 29299, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29298 + pts count: 1 = new pts: 29299. update pts: 29296 < new pts 29299, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29298 + pts count: 1 = new pts: 29299. update pts: 29298 < new pts 29299, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29298 + pts count: 1 = new pts: 29299, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1001728 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 28115 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29255 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29258 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29257 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29280 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29283 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29282 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29294 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29295 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29296 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29298 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29299 < new pts 29300, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 995983 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 28115 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29255 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29258 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29257 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29280 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29283 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29282 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29294 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29295 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29296 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29298 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29299 < new pts 29300, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 996875 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 28115 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29255 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29258 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29257 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29280 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29283 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29282 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29294 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29295 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29296 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29298 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29299 < new pts 29300, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 989621 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 28115 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29255 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29258 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29257 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29280 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29283 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29282 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29294 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29295 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29296 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29298 < new pts 29300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29299 + pts count: 1 = new pts: 29300. update pts: 29299 < new pts 29300, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29299 + pts count: 1 = new pts: 29300, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 990180 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29300 + pts count: 1 = new pts: 29301, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29301 + pts count: 1 = new pts: 29302, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29302 + pts count: 1 = new pts: 29303. update pts: 28115 < new pts 29303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29302 + pts count: 1 = new pts: 29303. update pts: 29255 < new pts 29303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29302 + pts count: 1 = new pts: 29303. update pts: 29258 < new pts 29303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29302 + pts count: 1 = new pts: 29303. update pts: 29257 < new pts 29303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29302 + pts count: 1 = new pts: 29303. update pts: 29280 < new pts 29303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29302 + pts count: 1 = new pts: 29303. update pts: 29283 < new pts 29303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29302 + pts count: 1 = new pts: 29303. update pts: 29282 < new pts 29303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29302 + pts count: 1 = new pts: 29303. update pts: 29294 < new pts 29303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29302 + pts count: 1 = new pts: 29303. update pts: 29295 < new pts 29303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29302 + pts count: 1 = new pts: 29303. update pts: 29296 < new pts 29303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29302 + pts count: 1 = new pts: 29303. update pts: 29298 < new pts 29303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29302 + pts count: 1 = new pts: 29303. update pts: 29299 < new pts 29303, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 991713 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29302, pts count: 1, new pts: 29303 < update pts: 29307, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 28115 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29255 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29258 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29257 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29280 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29283 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29282 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29294 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29295 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29296 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29298 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29299 < new pts 29308, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 998201 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 28115 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29255 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29258 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29257 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29280 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29283 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29282 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29294 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29295 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29296 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29298 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29299 < new pts 29308, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 994305 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 28115 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29255 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29258 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29257 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29280 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29283 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29282 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29294 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29295 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29296 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29298 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29299 < new pts 29308, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 995361 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 28115 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29255 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29258 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29257 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29280 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29283 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29282 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29294 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29295 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29296 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29298 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29299 < new pts 29308, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 996416 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 28115 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29255 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29258 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29257 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29280 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29283 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29282 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29294 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29295 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29296 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29298 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29299 < new pts 29308, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 997527 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 28115 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29255 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29258 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29257 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29280 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29283 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29282 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29294 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29295 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29296 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29298 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29299 < new pts 29308, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 999027 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 28115 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29255 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29258 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29257 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29280 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29283 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29282 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29294 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29295 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29296 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29298 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29299 < new pts 29308, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1000083 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 28115 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29255 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29258 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29257 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29280 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29283 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29282 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29294 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29295 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29296 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29298 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29299 < new pts 29308, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1001136 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 28115 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29255 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29258 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29257 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29280 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29283 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29282 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29294 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29295 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29296 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29298 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29299 < new pts 29308, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1002191 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 28115 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29255 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29258 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29257 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29280 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29283 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29282 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29294 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29295 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29296 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29298 < new pts 29308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29307 + pts count: 1 = new pts: 29308. update pts: 29299 < new pts 29308, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1003524 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29307, pts count: 1, new pts: 29308 < update pts: 29312, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1006379 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1007432 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1008541 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1009468 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1011061 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1009748 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1007820 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1006392 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 999921 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1000974 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1002026 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1003090 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1004193 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1005305 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1006366 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1004952 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1001445 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1000567 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 999840 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 28115 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29255 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29258 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29257 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29280 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29283 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29282 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29294 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29295 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29296 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29298 < new pts 29313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29312 + pts count: 1 = new pts: 29313. update pts: 29299 < new pts 29313, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1004308 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 28115 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29255 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29258 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29257 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29280 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29283 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29282 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29294 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29295 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29296 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29298 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29299 < new pts 29315, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1005538 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 28115 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29255 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29258 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29257 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29280 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29283 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29282 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29294 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29295 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29296 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29298 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29299 < new pts 29315, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1006591 bytes -AuthKeyHandler, danogentili: Calling 448812... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 28115 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29255 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29258 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29257 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29280 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29283 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29282 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29294 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29295 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29296 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29298 < new pts 29315, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29314 + pts count: 1 = new pts: 29315. update pts: 29299 < new pts 29315, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1007644 bytes -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29378 + pts count: 1 = new pts: 29379. update pts: 28115 < new pts 29379, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 638892 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29378 + pts count: 1 = new pts: 29379. update pts: 28115 < new pts 29379, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 644729 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29378 + pts count: 1 = new pts: 29379. update pts: 28115 < new pts 29379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29378 + pts count: 1 = new pts: 29379, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29379 + pts count: 1 = new pts: 29380, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 658203 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29380 + pts count: 1 = new pts: 29381. update pts: 28115 < new pts 29381, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29380 + pts count: 1 = new pts: 29381. update pts: 29379 < new pts 29381, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 668512 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29382 + pts count: 1 = new pts: 29383. update pts: 28115 < new pts 29383, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29382 + pts count: 1 = new pts: 29383. update pts: 29379 < new pts 29383, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29382 + pts count: 1 = new pts: 29383, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 681246 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29384 + pts count: 1 = new pts: 29385. update pts: 28115 < new pts 29385, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29384 + pts count: 1 = new pts: 29385. update pts: 29379 < new pts 29385, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29384 + pts count: 1 = new pts: 29385. update pts: 29383 < new pts 29385, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29384 + pts count: 1 = new pts: 29385, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 702595 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29387 + pts count: 1 = new pts: 29388. update pts: 28115 < new pts 29388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29387 + pts count: 1 = new pts: 29388. update pts: 29379 < new pts 29388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29387 + pts count: 1 = new pts: 29388. update pts: 29383 < new pts 29388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29387 + pts count: 1 = new pts: 29388. update pts: 29385 < new pts 29388, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 708429 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29387 + pts count: 1 = new pts: 29388. update pts: 28115 < new pts 29388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29387 + pts count: 1 = new pts: 29388. update pts: 29379 < new pts 29388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29387 + pts count: 1 = new pts: 29388. update pts: 29383 < new pts 29388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29387 + pts count: 1 = new pts: 29388. update pts: 29385 < new pts 29388, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 717345 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29388 + pts count: 1 = new pts: 29389. update pts: 28115 < new pts 29389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29388 + pts count: 1 = new pts: 29389. update pts: 29379 < new pts 29389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29388 + pts count: 1 = new pts: 29389. update pts: 29383 < new pts 29389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29388 + pts count: 1 = new pts: 29389. update pts: 29385 < new pts 29389, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29388 + pts count: 1 = new pts: 29389, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 731766 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 28115 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29379 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29383 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29385 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29389 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29390 < new pts 29391, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 742609 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 28115 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29379 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29383 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29385 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29389 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29390 < new pts 29391, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 748452 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 28115 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29379 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29383 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29385 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29389 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29390 < new pts 29391, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 754299 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 28115 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29379 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29383 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29385 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29389 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29390 + pts count: 1 = new pts: 29391. update pts: 29390 < new pts 29391, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29390 + pts count: 1 = new pts: 29391, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29391 + pts count: 1 = new pts: 29392, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29392 + pts count: 1 = new pts: 29393, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 776675 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29393 + pts count: 1 = new pts: 29394. update pts: 28115 < new pts 29394, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29393 + pts count: 1 = new pts: 29394. update pts: 29379 < new pts 29394, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29393 + pts count: 1 = new pts: 29394. update pts: 29383 < new pts 29394, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29393 + pts count: 1 = new pts: 29394. update pts: 29385 < new pts 29394, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29393 + pts count: 1 = new pts: 29394. update pts: 29389 < new pts 29394, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29393 + pts count: 1 = new pts: 29394. update pts: 29390 < new pts 29394, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29393 + pts count: 1 = new pts: 29394. update pts: 29391 < new pts 29394, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29393 + pts count: 1 = new pts: 29394. update pts: 29392 < new pts 29394, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29393 + pts count: 1 = new pts: 29394. update pts: 29393 < new pts 29394, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29393 + pts count: 1 = new pts: 29394, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 788037 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29394 + pts count: 1 = new pts: 29395. update pts: 28115 < new pts 29395, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29394 + pts count: 1 = new pts: 29395. update pts: 29379 < new pts 29395, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29394 + pts count: 1 = new pts: 29395. update pts: 29383 < new pts 29395, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29394 + pts count: 1 = new pts: 29395. update pts: 29385 < new pts 29395, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29394 + pts count: 1 = new pts: 29395. update pts: 29389 < new pts 29395, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29394 + pts count: 1 = new pts: 29395. update pts: 29390 < new pts 29395, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29394 + pts count: 1 = new pts: 29395. update pts: 29391 < new pts 29395, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29394 + pts count: 1 = new pts: 29395. update pts: 29392 < new pts 29395, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29394 + pts count: 1 = new pts: 29395. update pts: 29393 < new pts 29395, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29394 + pts count: 1 = new pts: 29395. update pts: 29394 < new pts 29395, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 800033 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 28115 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29379 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29383 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29385 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29389 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29390 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29391 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29392 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29393 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29394 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29396 < new pts 29397, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 810891 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 28115 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29379 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29383 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29385 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29389 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29390 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29391 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29392 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29393 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29394 < new pts 29397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29396 + pts count: 1 = new pts: 29397. update pts: 29396 < new pts 29397, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 819816 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29397 + pts count: 1 = new pts: 29398. update pts: 28115 < new pts 29398, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29397 + pts count: 1 = new pts: 29398. update pts: 29379 < new pts 29398, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29397 + pts count: 1 = new pts: 29398. update pts: 29383 < new pts 29398, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29397 + pts count: 1 = new pts: 29398. update pts: 29385 < new pts 29398, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29397 + pts count: 1 = new pts: 29398. update pts: 29389 < new pts 29398, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29397 + pts count: 1 = new pts: 29398. update pts: 29390 < new pts 29398, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29397 + pts count: 1 = new pts: 29398. update pts: 29391 < new pts 29398, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29397 + pts count: 1 = new pts: 29398. update pts: 29392 < new pts 29398, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29397 + pts count: 1 = new pts: 29398. update pts: 29393 < new pts 29398, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29397 + pts count: 1 = new pts: 29398. update pts: 29394 < new pts 29398, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29397 + pts count: 1 = new pts: 29398. update pts: 29396 < new pts 29398, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29397 + pts count: 1 = new pts: 29398, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 831178 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29398 + pts count: 1 = new pts: 29399. update pts: 28115 < new pts 29399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29398 + pts count: 1 = new pts: 29399. update pts: 29379 < new pts 29399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29398 + pts count: 1 = new pts: 29399. update pts: 29383 < new pts 29399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29398 + pts count: 1 = new pts: 29399. update pts: 29385 < new pts 29399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29398 + pts count: 1 = new pts: 29399. update pts: 29389 < new pts 29399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29398 + pts count: 1 = new pts: 29399. update pts: 29390 < new pts 29399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29398 + pts count: 1 = new pts: 29399. update pts: 29391 < new pts 29399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29398 + pts count: 1 = new pts: 29399. update pts: 29392 < new pts 29399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29398 + pts count: 1 = new pts: 29399. update pts: 29393 < new pts 29399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29398 + pts count: 1 = new pts: 29399. update pts: 29394 < new pts 29399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29398 + pts count: 1 = new pts: 29399. update pts: 29396 < new pts 29399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29398 + pts count: 1 = new pts: 29399. update pts: 29398 < new pts 29399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29398 + pts count: 1 = new pts: 29399, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 842540 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29399 + pts count: 1 = new pts: 29400. update pts: 28115 < new pts 29400, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29399 + pts count: 1 = new pts: 29400. update pts: 29379 < new pts 29400, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29399 + pts count: 1 = new pts: 29400. update pts: 29383 < new pts 29400, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29399 + pts count: 1 = new pts: 29400. update pts: 29385 < new pts 29400, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29399 + pts count: 1 = new pts: 29400. update pts: 29389 < new pts 29400, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29399 + pts count: 1 = new pts: 29400. update pts: 29390 < new pts 29400, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29399 + pts count: 1 = new pts: 29400. update pts: 29391 < new pts 29400, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29399 + pts count: 1 = new pts: 29400. update pts: 29392 < new pts 29400, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29399 + pts count: 1 = new pts: 29400. update pts: 29393 < new pts 29400, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29399 + pts count: 1 = new pts: 29400. update pts: 29394 < new pts 29400, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29399 + pts count: 1 = new pts: 29400. update pts: 29396 < new pts 29400, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29399 + pts count: 1 = new pts: 29400. update pts: 29398 < new pts 29400, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29399 + pts count: 1 = new pts: 29400. update pts: 29399 < new pts 29400, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29399 + pts count: 1 = new pts: 29400, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 853902 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29400 + pts count: 1 = new pts: 29401. update pts: 28115 < new pts 29401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29400 + pts count: 1 = new pts: 29401. update pts: 29379 < new pts 29401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29400 + pts count: 1 = new pts: 29401. update pts: 29383 < new pts 29401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29400 + pts count: 1 = new pts: 29401. update pts: 29385 < new pts 29401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29400 + pts count: 1 = new pts: 29401. update pts: 29389 < new pts 29401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29400 + pts count: 1 = new pts: 29401. update pts: 29390 < new pts 29401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29400 + pts count: 1 = new pts: 29401. update pts: 29391 < new pts 29401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29400 + pts count: 1 = new pts: 29401. update pts: 29392 < new pts 29401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29400 + pts count: 1 = new pts: 29401. update pts: 29393 < new pts 29401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29400 + pts count: 1 = new pts: 29401. update pts: 29394 < new pts 29401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29400 + pts count: 1 = new pts: 29401. update pts: 29396 < new pts 29401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29400 + pts count: 1 = new pts: 29401. update pts: 29398 < new pts 29401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29400 + pts count: 1 = new pts: 29401. update pts: 29399 < new pts 29401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29400 + pts count: 1 = new pts: 29401. update pts: 29400 < new pts 29401, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 865902 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 28115 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29379 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29383 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29385 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29389 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29390 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29391 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29392 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29393 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29394 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29396 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29398 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29399 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29400 < new pts 29403, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 872341 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 28115 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29379 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29383 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29385 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29389 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29390 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29391 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29392 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29393 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29394 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29396 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29398 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29399 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29402 + pts count: 1 = new pts: 29403. update pts: 29400 < new pts 29403, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29402 + pts count: 1 = new pts: 29403, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 883119 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29403 + pts count: 1 = new pts: 29404. update pts: 28115 < new pts 29404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29403 + pts count: 1 = new pts: 29404. update pts: 29379 < new pts 29404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29403 + pts count: 1 = new pts: 29404. update pts: 29383 < new pts 29404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29403 + pts count: 1 = new pts: 29404. update pts: 29385 < new pts 29404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29403 + pts count: 1 = new pts: 29404. update pts: 29389 < new pts 29404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29403 + pts count: 1 = new pts: 29404. update pts: 29390 < new pts 29404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29403 + pts count: 1 = new pts: 29404. update pts: 29391 < new pts 29404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29403 + pts count: 1 = new pts: 29404. update pts: 29392 < new pts 29404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29403 + pts count: 1 = new pts: 29404. update pts: 29393 < new pts 29404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29403 + pts count: 1 = new pts: 29404. update pts: 29394 < new pts 29404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29403 + pts count: 1 = new pts: 29404. update pts: 29396 < new pts 29404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29403 + pts count: 1 = new pts: 29404. update pts: 29398 < new pts 29404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29403 + pts count: 1 = new pts: 29404. update pts: 29399 < new pts 29404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29403 + pts count: 1 = new pts: 29404. update pts: 29400 < new pts 29404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29403 + pts count: 1 = new pts: 29404. update pts: 29403 < new pts 29404, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 893060 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29405 + pts count: 1 = new pts: 29406. update pts: 28115 < new pts 29406, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29405 + pts count: 1 = new pts: 29406. update pts: 29379 < new pts 29406, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29405 + pts count: 1 = new pts: 29406. update pts: 29383 < new pts 29406, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29405 + pts count: 1 = new pts: 29406. update pts: 29385 < new pts 29406, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29405 + pts count: 1 = new pts: 29406. update pts: 29389 < new pts 29406, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29405 + pts count: 1 = new pts: 29406. update pts: 29390 < new pts 29406, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29405 + pts count: 1 = new pts: 29406. update pts: 29391 < new pts 29406, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29405 + pts count: 1 = new pts: 29406. update pts: 29392 < new pts 29406, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29405 + pts count: 1 = new pts: 29406. update pts: 29393 < new pts 29406, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29405 + pts count: 1 = new pts: 29406. update pts: 29394 < new pts 29406, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29405 + pts count: 1 = new pts: 29406. update pts: 29396 < new pts 29406, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29405 + pts count: 1 = new pts: 29406. update pts: 29398 < new pts 29406, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29405 + pts count: 1 = new pts: 29406. update pts: 29399 < new pts 29406, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29405 + pts count: 1 = new pts: 29406. update pts: 29400 < new pts 29406, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29405 + pts count: 1 = new pts: 29406. update pts: 29403 < new pts 29406, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29405 + pts count: 1 = new pts: 29406. update pts: 29405 < new pts 29406, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 904709 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 28115 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29379 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29383 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29385 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29389 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29390 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29391 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29392 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29393 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29394 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29396 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29398 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29399 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29400 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29403 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29405 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29406 < new pts 29407, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 913366 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 28115 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29379 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29383 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29385 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29389 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29390 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29391 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29392 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29393 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29394 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29396 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29398 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29399 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29400 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29403 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29405 < new pts 29407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29406 + pts count: 1 = new pts: 29407. update pts: 29406 < new pts 29407, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 920622 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 28115 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 29379 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 29383 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 29385 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 29389 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 29390 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 29391 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 29392 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 29393 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 29394 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 29396 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 29398 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 29399 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 29400 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 29403 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 29405 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29407 + pts count: 1 = new pts: 29408. update pts: 29406 < new pts 29408, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29407 + pts count: 1 = new pts: 29408, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 929726 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 28115 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29379 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29383 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29385 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29389 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29390 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29391 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29392 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29393 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29394 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29396 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29398 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29399 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29400 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29403 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29405 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29406 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29408 + pts count: 1 = new pts: 29409. update pts: 29408 < new pts 29409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29408 + pts count: 1 = new pts: 29409, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 938869 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 28115 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29379 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29383 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29385 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29389 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29390 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29391 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29392 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29393 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29394 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29396 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29398 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29399 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29400 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29403 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29405 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29406 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29408 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29409 + pts count: 1 = new pts: 29410. update pts: 29409 < new pts 29410, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29409 + pts count: 1 = new pts: 29410, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 951000 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 28115 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29379 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29383 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29385 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29389 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29390 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29391 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29392 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29393 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29394 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29396 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29398 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29399 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29400 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29403 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29405 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29406 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29408 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29409 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29410 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29411 < new pts 29412, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 959601 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 28115 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29379 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29383 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29385 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29389 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29390 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29391 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29392 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29393 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29394 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29396 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29398 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29399 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29400 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29403 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29405 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29406 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29408 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29409 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29410 < new pts 29412, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29411 + pts count: 1 = new pts: 29412. update pts: 29411 < new pts 29412, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 966453 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 28115 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29379 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29383 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29385 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29389 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29390 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29391 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29392 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29393 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29394 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29396 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29398 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29399 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29400 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29403 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29405 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29406 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29408 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29409 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29410 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29412 + pts count: 1 = new pts: 29413. update pts: 29411 < new pts 29413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29412 + pts count: 1 = new pts: 29413, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 975557 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 28115 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29379 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29383 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29385 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29389 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29390 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29391 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29392 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29393 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29394 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29396 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29398 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29399 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29400 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29403 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29405 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29406 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29408 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29409 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29410 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29411 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29413 + pts count: 1 = new pts: 29414. update pts: 29413 < new pts 29414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29413 + pts count: 1 = new pts: 29414, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Deserializing MadelineProto from calls.madeline... -Wrote 989397 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 28115 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29379 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29383 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29385 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29389 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29390 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29391 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29392 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29393 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29394 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29396 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29398 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29399 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29400 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29403 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29405 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29406 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29408 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29409 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29410 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29411 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29413 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29416 + pts count: 1 = new pts: 29417. update pts: 29414 < new pts 29417, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29416 + pts count: 1 = new pts: 29417, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 999516 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 28115 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29379 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29383 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29385 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29389 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29390 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29391 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29392 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29393 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29394 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29396 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29398 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29399 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29400 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29403 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29405 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29406 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29408 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29409 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29410 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29411 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29413 < new pts 29418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29417 + pts count: 1 = new pts: 29418. update pts: 29414 < new pts 29418, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 28115 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29379 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29383 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29385 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29389 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29390 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29391 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29392 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.differenceEmpty -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29393 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29394 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29396 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29398 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29399 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29400 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29403 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29405 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29406 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29408 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29409 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29410 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29411 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29413 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29414 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29417 < new pts 29419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29418 + pts count: 1 = new pts: 29419. update pts: 29418 < new pts 29419, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 741796 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1010114 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 28115 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29379 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29383 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29385 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29389 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29390 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29391 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29392 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29393 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29394 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29396 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29398 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29399 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29400 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29403 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29405 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29406 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29408 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29409 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29410 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29411 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29413 < new pts 29420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29419 + pts count: 1 = new pts: 29420. update pts: 29414 < new pts 29420, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 28115 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29379 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29383 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29385 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29389 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29390 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29391 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29392 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29393 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29394 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29396 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29398 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29399 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29400 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29403 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29405 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29406 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29408 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29409 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29410 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29411 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29413 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29414 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29417 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29418 < new pts 29421, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 750319 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1013929 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 28115 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29379 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29383 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29385 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29389 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29390 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29391 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29392 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29393 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29394 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29396 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29398 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29399 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29400 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29403 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29405 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29406 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29408 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29409 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29410 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29411 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29413 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29414 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29417 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29418 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29420 + pts count: 1 = new pts: 29421, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 28115 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29379 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29383 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29385 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29389 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29390 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29391 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29392 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29393 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29394 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29396 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29398 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29399 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29400 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29403 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29405 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29406 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29408 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29409 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29410 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29411 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29413 < new pts 29421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29420 + pts count: 1 = new pts: 29421. update pts: 29414 < new pts 29421, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1028737 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -Wrote 763470 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29423, pts count: 1, new pts: 29424 < update pts: 29425, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 28115 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29379 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29383 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29385 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29389 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29390 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29391 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29392 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29393 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29394 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29396 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29398 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29399 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29400 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29403 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29405 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29406 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29408 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29409 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29410 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29411 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29413 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29414 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29417 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29418 < new pts 29426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29425 + pts count: 1 = new pts: 29426. update pts: 29421 < new pts 29426, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 28115 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29379 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29383 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29385 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29389 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29390 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29391 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29392 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29393 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29394 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29396 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29398 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29399 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29400 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29403 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29405 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29406 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29408 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29409 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29410 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29411 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29413 < new pts 29424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29423 + pts count: 1 = new pts: 29424. update pts: 29414 < new pts 29424, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1044278 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 28115 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29379 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29383 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29385 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29389 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29390 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29391 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29392 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29393 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29394 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29396 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29398 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29399 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29400 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29403 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29405 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29406 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29408 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29409 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29410 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29411 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29413 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29414 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29417 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29418 < new pts 29427, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29426 + pts count: 1 = new pts: 29427. update pts: 29421 < new pts 29427, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 774911 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1058384 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 28115 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29379 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29383 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29385 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29389 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29390 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29391 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29392 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29393 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29394 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29396 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29398 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29399 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29400 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29403 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29405 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29406 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29408 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29409 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29410 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29411 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29413 < new pts 29428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29427 + pts count: 1 = new pts: 29428. update pts: 29414 < new pts 29428, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 28115 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29379 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29383 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29385 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29389 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29390 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29391 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29392 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29393 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29394 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29396 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29398 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29399 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29400 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29403 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29405 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29406 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29408 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29409 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29410 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29411 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29413 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29414 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29417 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29418 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29421 < new pts 29430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29429 + pts count: 1 = new pts: 29430. update pts: 29429 < new pts 29430, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 784989 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29429 + pts count: 1 = new pts: 29430, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1063163 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 28115 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29379 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29383 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29385 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29389 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29390 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29391 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29392 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29393 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29394 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29396 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29398 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29399 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29400 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29403 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29405 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29406 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29408 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29409 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29410 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29411 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29413 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29414 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29417 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29418 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29421 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29429 < new pts 29431, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 28115 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29379 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29383 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29385 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29389 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29390 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29391 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29392 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29393 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29394 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29396 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29398 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29399 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29400 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29403 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29405 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29406 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29408 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29409 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29410 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29411 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29413 < new pts 29431, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29430 + pts count: 1 = new pts: 29431. update pts: 29414 < new pts 29431, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 795802 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29432 + pts count: 1 = new pts: 29433, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1068554 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 28115 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29379 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29383 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29385 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29389 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29390 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29391 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29392 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29393 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29394 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29396 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29398 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29399 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29400 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29403 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29405 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29406 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29408 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29409 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29410 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29411 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29413 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29414 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29417 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29418 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29421 < new pts 29433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29432 + pts count: 1 = new pts: 29433. update pts: 29429 < new pts 29433, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 28115 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29379 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29383 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29385 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29389 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29390 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29391 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29392 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29393 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29394 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29396 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29398 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29399 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29400 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29403 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29405 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29406 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29408 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29409 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29410 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29411 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29413 < new pts 29434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29433 + pts count: 1 = new pts: 29434. update pts: 29414 < new pts 29434, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 807416 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1072015 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 28115 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29379 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29383 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29385 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29389 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29390 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29391 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29392 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29393 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29394 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29396 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29398 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29399 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29400 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29403 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29405 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29406 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29408 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29409 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29410 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29411 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29413 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29414 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29417 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29418 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29421 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29429 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29435 + pts count: 1 = new pts: 29436, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 28115 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29379 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29383 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29385 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29389 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29390 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29391 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29392 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29393 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29394 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29396 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29398 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29399 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29400 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29403 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29405 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29406 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29408 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29409 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29410 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29411 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29413 < new pts 29436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29435 + pts count: 1 = new pts: 29436. update pts: 29414 < new pts 29436, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1076487 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 819002 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 28115 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29379 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29383 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29385 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29389 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29390 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29391 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29392 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29393 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29394 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29396 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29398 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29399 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29400 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29403 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29405 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29406 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29408 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29409 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29410 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29411 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29413 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29414 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29417 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29418 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29421 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29429 < new pts 29437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29436 + pts count: 1 = new pts: 29437. update pts: 29436 < new pts 29437, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29436, pts count: 1, new pts: 29437 < update pts: 29438, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29437, pts count: 1, new pts: 29438 < update pts: 29439, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 28115 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29379 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29383 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29385 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29389 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29390 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29391 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29392 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29393 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29394 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29396 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29398 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29399 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29400 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29403 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29405 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29406 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29408 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29409 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29410 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29411 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29413 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29414 < new pts 29441, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1081670 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 28115 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29379 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29383 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29385 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29389 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29390 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29391 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29392 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29393 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29394 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29396 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29398 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29399 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29400 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29403 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29405 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29406 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29408 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29409 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29410 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29411 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29413 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29414 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29417 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29418 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29421 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29429 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29436 < new pts 29441, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 840832 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1078950 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 28115 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29379 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29383 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29385 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29389 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29390 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29391 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29392 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29393 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29394 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29396 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29398 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29399 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29400 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29403 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29405 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29406 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29408 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29409 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29410 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29411 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29413 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29414 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29417 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29418 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29421 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29429 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29436 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29440 + pts count: 1 = new pts: 29441, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 28115 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29379 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29383 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29385 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29389 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29390 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29391 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29392 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29393 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29394 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29396 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29398 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29399 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29400 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29403 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29405 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29406 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29408 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29409 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29410 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29411 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29413 < new pts 29441, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29440 + pts count: 1 = new pts: 29441. update pts: 29414 < new pts 29441, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 849351 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1079812 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Received updates. -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29441, pts count: 1, new pts: 29442 < update pts: 29443, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29441, pts count: 1, new pts: 29442 < update pts: 29444, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 28115 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29379 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29383 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29385 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29389 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29390 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29391 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29392 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29393 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29394 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29396 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29398 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29399 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29400 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29403 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29405 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29406 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29408 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29409 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29410 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29411 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29413 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29414 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29417 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29418 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29421 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29429 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29436 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29441 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29442 < new pts 29445, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 28115 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29379 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29383 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29385 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29389 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29390 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29391 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29392 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29393 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29394 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29396 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29398 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29399 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29400 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29403 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29405 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29406 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29408 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29409 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29410 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29411 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29413 < new pts 29445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29444 + pts count: 1 = new pts: 29445. update pts: 29414 < new pts 29445, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1091542 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 872107 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29445, pts count: 1, new pts: 29446 < update pts: 29449, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 28115 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29379 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29383 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29385 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29389 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29390 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29391 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29392 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29393 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29394 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29396 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29398 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29399 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29400 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29403 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29405 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29406 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29408 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29409 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29410 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29411 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29413 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29414 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29417 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29418 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29421 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29429 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29436 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29441 < new pts 29446, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29445 + pts count: 1 = new pts: 29446. update pts: 29442 < new pts 29446, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29450 + pts count: 1 = new pts: 29451, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 28115 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29379 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29383 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29385 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29389 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29390 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29391 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29392 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29393 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29394 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29396 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29398 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29399 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29400 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29403 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29405 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29406 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29408 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29409 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29410 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29411 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29413 < new pts 29451, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29450 + pts count: 1 = new pts: 29451. update pts: 29414 < new pts 29451, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1097043 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 28115 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29379 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29383 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29385 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29389 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29390 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29391 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29392 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29393 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29394 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29396 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29398 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29399 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29400 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29403 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29405 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29406 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29408 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29409 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29410 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29411 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29413 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29414 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29417 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29418 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29421 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29429 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29436 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29441 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29442 < new pts 29453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29452 + pts count: 1 = new pts: 29453. update pts: 29452 < new pts 29453, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 893011 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29452, pts count: 1, new pts: 29453 < update pts: 29456, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 28115 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29379 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29383 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29385 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29389 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29390 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29391 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29392 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29393 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29394 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29396 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29398 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29399 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29400 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29403 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29405 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29406 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29408 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29409 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29410 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29411 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29413 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29414 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29453 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29454 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29455 < new pts 29457, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1103459 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 912468 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 28115 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29379 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29383 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29385 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29389 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29390 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29391 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29392 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29393 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29394 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29396 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29398 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29399 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29400 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29403 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29405 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29406 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29408 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29409 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29410 < new pts 29456, channel id: -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29411 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29413 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29414 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29417 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29418 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29421 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29429 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29436 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29441 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29442 < new pts 29456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29455 + pts count: 1 = new pts: 29456. update pts: 29452 < new pts 29456, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 28115 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29379 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29383 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29385 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29389 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29390 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29391 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29392 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29393 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29394 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29396 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29398 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29399 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29400 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29403 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29405 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29406 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29408 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29409 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29410 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29411 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29413 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29414 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29453 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29454 < new pts 29457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29456 + pts count: 1 = new pts: 29457. update pts: 29455 < new pts 29457, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1110248 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 28115 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29379 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29383 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29385 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29389 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29390 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29391 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29392 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29393 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29394 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29396 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29398 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29399 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29400 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29403 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29405 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29406 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29408 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29409 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29410 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29411 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29413 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29414 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29417 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29418 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29421 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29429 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29436 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29441 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29442 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29458 + pts count: 1 = new pts: 29459. update pts: 29452 < new pts 29459, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29458 + pts count: 1 = new pts: 29459, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 923741 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29459 + pts count: 1 = new pts: 29460, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29459, pts count: 1, new pts: 29460 < update pts: 29462, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1112719 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 28115 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29379 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29383 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29385 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29389 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29390 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29391 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29392 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29393 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29394 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29396 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29398 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29399 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29400 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29403 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29405 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29406 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29408 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29409 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29410 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29411 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29413 < new pts 29462, channel id: -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 28115 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29414 < new pts 29462, channel id: -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29379 < new pts 29463, channel id: -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29417 < new pts 29462, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29383 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29385 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29418 < new pts 29462, channel id: -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29389 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29421 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29390 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29391 < new pts 29463, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29429 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29392 < new pts 29463, channel id: -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29436 < new pts 29462, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29393 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29394 < new pts 29463, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29441 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29396 < new pts 29463, channel id: -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29442 < new pts 29462, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29398 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29399 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29452 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29400 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29403 < new pts 29463, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29459 < new pts 29462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29405 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29461 + pts count: 1 = new pts: 29462. update pts: 29461 < new pts 29462, channel id: -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29406 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29408 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29409 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29410 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29411 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29413 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29414 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29453 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29454 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29455 < new pts 29463, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 940816 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1121205 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 28115 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29379 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29383 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29385 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29389 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29390 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29391 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29392 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29393 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29394 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29396 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29398 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29399 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29400 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29403 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29405 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29406 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29408 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29409 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29410 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29411 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29413 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29414 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29417 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29418 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29421 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29429 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29436 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29441 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29442 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29452 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29459 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29461 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29463 + pts count: 1 = new pts: 29464. update pts: 29463 < new pts 29464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29463 + pts count: 1 = new pts: 29464, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29464 + pts count: 1 = new pts: 29465, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 28115 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29379 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29383 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29385 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29389 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29390 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29391 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29392 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29393 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29394 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29396 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29398 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29399 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29400 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29403 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29405 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29406 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29408 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29409 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29410 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29411 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29413 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29414 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29453 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29454 < new pts 29463, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29462 + pts count: 1 = new pts: 29463. update pts: 29455 < new pts 29463, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1124395 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29465, pts count: 1, new pts: 29466 < update pts: 29468, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 960666 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 28115 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29379 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29383 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29385 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29389 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29390 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29391 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29392 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29393 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29394 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29396 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29398 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29399 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29400 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29403 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29405 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29406 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29408 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29409 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29410 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29411 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29413 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29414 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29417 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29418 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29421 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29429 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29436 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29441 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29442 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29452 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29459 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29461 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29463 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29464 < new pts 29469, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29468 + pts count: 1 = new pts: 29469. update pts: 29465 < new pts 29469, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 28115 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29379 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29383 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29385 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29389 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29390 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29391 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29392 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29393 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29394 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29396 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29398 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29399 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29400 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29403 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29405 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29406 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29408 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29409 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29410 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29411 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29413 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29414 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29453 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29454 < new pts 29468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29467 + pts count: 1 = new pts: 29468. update pts: 29455 < new pts 29468, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1132841 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29469 + pts count: 1 = new pts: 29470, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 28115 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29379 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29383 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29385 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29389 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29390 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29391 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29392 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29393 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29394 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29396 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29398 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29399 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29400 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29403 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29405 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29406 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29408 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29409 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29410 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29411 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29413 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29414 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29417 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29418 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29421 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29429 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29436 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29441 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29442 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29452 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29459 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29461 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29463 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29464 < new pts 29471, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29470 + pts count: 1 = new pts: 29471. update pts: 29465 < new pts 29471, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 970757 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29469, pts count: 1, new pts: 29470 < update pts: 29472, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 28115 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29379 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29383 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29385 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29389 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29390 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29391 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29392 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29393 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29394 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29396 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29398 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29399 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29400 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29403 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29405 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29406 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29408 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29409 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29410 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29411 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29413 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29414 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29453 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29454 < new pts 29473, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29472 + pts count: 1 = new pts: 29473. update pts: 29455 < new pts 29473, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1131916 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 28115 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29379 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29383 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29385 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29389 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29390 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29391 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29392 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29393 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29394 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29396 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29398 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29399 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29400 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29403 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29405 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29406 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29408 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29409 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29410 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29411 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29413 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29414 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29417 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29418 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29421 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29429 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29436 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29441 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29442 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29452 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29459 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29461 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29463 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29464 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29465 < new pts 29472, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29471 + pts count: 1 = new pts: 29472. update pts: 29471 < new pts 29472, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 987830 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29472, pts count: 1, new pts: 29473 < update pts: 29474, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1140400 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 28115 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29379 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29383 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29385 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29389 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29390 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29391 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29392 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29393 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29394 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29396 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29398 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29399 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29400 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29403 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29405 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29406 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29408 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29409 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29410 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29411 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29413 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29414 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29417 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29418 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29421 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29429 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29436 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29441 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29442 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29452 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29459 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29461 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29463 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29464 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29465 < new pts 29474, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29473 + pts count: 1 = new pts: 29474. update pts: 29471 < new pts 29474, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 28115 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29379 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29383 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29385 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29389 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29390 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29391 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29392 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29393 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29394 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29396 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29398 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29399 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29400 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29403 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29405 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29406 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29408 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29409 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29410 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29411 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29413 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29414 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29453 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29454 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29455 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29473 < new pts 29475, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1013322 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1143615 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Received updates. -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 28115 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29379 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29383 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29385 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29389 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29390 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29391 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29392 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29393 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29394 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29396 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29398 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29399 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29400 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29403 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29405 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29406 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29408 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29409 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29410 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29411 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29413 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29414 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29417 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29418 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29421 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29429 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29436 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29441 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29442 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29452 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29459 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29461 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29463 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29464 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29465 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29471 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29474 + pts count: 1 = new pts: 29475, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 28115 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29379 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29383 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29385 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29389 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29390 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29391 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29392 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29393 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29394 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29396 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29398 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29399 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29400 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29403 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29405 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29406 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29408 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29409 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29410 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29411 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29413 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29414 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29453 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29454 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29455 < new pts 29475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29474 + pts count: 1 = new pts: 29475. update pts: 29473 < new pts 29475, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1150143 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1026481 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 28115 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29379 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29383 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29385 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29389 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29390 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29391 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29392 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29393 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29394 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29396 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29398 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29399 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29400 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29403 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29405 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29406 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29408 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29409 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29410 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29411 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29413 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29414 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29417 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29418 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29421 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29429 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29436 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29441 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29442 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29452 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29459 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29461 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29463 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29464 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29465 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29471 < new pts 29477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29476 + pts count: 1 = new pts: 29477. update pts: 29475 < new pts 29477, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1152536 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 28115 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29379 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29383 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29385 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29389 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29390 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29391 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29392 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29393 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29394 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29396 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29398 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29399 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29400 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29403 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29405 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29406 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29408 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29409 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29410 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29411 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29413 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29414 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29453 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29454 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29455 < new pts 29478, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29477 + pts count: 1 = new pts: 29478. update pts: 29473 < new pts 29478, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 28115 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29379 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29383 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29385 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29389 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29390 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29391 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29392 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29393 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29394 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29396 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29398 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29399 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29400 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29403 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29405 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29406 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29408 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29409 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29410 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29411 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29413 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29414 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29417 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29418 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29421 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29429 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29436 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29441 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29442 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29452 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29459 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29461 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29463 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29464 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29465 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29471 < new pts 29479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29478 + pts count: 1 = new pts: 29479. update pts: 29475 < new pts 29479, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1036342 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1159218 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 28115 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29379 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29383 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29385 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29389 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29390 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29391 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29392 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29393 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29394 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29396 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29398 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29399 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29400 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29403 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29405 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29406 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29408 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29409 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29410 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29411 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29413 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29414 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29453 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29454 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29455 < new pts 29480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29479 + pts count: 1 = new pts: 29480. update pts: 29473 < new pts 29480, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 28115 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29379 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29383 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29385 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29389 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29390 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29391 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29392 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29393 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29394 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29396 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29398 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29399 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29400 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29403 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29405 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29406 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29408 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29409 < new pts 29481, channel id: -UpdateHandler, danogentili: Handling an update of type updateMessageID... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29410 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29411 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29413 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29414 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29417 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29418 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29421 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29429 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29436 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29441 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29442 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29452 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29459 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29461 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29463 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29464 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29465 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29471 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29480 + pts count: 1 = new pts: 29481. update pts: 29475 < new pts 29481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29480 + pts count: 1 = new pts: 29481, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1044429 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29481 + pts count: 1 = new pts: 29482, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29482 + pts count: 1 = new pts: 29483, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1160175 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 28115 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29379 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29383 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29385 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29389 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29390 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29391 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29392 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29393 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29394 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29396 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29398 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29399 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29400 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29403 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29405 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29406 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29408 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29409 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29410 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29411 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29413 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29414 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29417 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29418 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29421 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29429 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29436 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29441 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29442 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29452 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29459 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29461 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29463 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29464 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29465 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29471 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29475 < new pts 29482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29481 + pts count: 1 = new pts: 29482. update pts: 29481 < new pts 29482, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 28115 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29379 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29383 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29385 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29389 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29390 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29391 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29392 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29393 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29394 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29396 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29398 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29399 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29400 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29403 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29405 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29406 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29408 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29409 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29410 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29411 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29413 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29414 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29453 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29454 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29455 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29473 < new pts 29484, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1055840 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1166391 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29484 + pts count: 1 = new pts: 29485, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 28115 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29379 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29383 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29385 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29389 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29390 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29391 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29392 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29393 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29394 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29396 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29398 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29399 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29400 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29403 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29405 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29406 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29408 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29409 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29410 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29411 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29413 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29414 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29417 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29418 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29421 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29429 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29436 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29441 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29442 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29452 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29459 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29461 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29463 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29464 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29465 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29471 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29475 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29481 < new pts 29486, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 28115 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29379 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29383 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29385 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29389 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29390 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29391 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29392 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29393 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29394 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29396 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29398 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29399 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29400 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29403 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29405 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29406 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29408 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29409 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29410 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29411 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29413 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29414 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29453 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29454 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29455 < new pts 29484, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29483 + pts count: 1 = new pts: 29484. update pts: 29473 < new pts 29484, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1164749 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 28115 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29379 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29383 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29385 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29389 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29390 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29391 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29392 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29393 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29394 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29396 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29398 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29399 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29400 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29403 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29405 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29406 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29408 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29409 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29410 < new pts 29486, channel id: -Wrote 1071324 bytes -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29411 < new pts 29486, channel id: -AuthKeyHandler, danogentili: Calling 136330... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29413 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29414 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29417 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29418 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29421 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29429 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29436 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29441 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29442 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29452 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29459 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29461 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29463 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29464 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29465 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29471 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29475 < new pts 29486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29485 + pts count: 1 = new pts: 29486. update pts: 29481 < new pts 29486, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29487, pts count: 1, new pts: 29488 < update pts: 29489, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 28115 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29379 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29383 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29385 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29389 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29390 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29391 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29392 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29393 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29394 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29396 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29398 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29399 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29400 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29403 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29405 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29406 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29408 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29409 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29410 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29411 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29413 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29414 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29453 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29454 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29455 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29473 < new pts 29491, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1173972 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -Wrote 1084537 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 28115 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29379 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29383 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29385 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29389 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29390 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29391 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29392 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29393 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29394 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29396 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29398 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29399 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29400 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29403 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29405 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29406 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29408 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29409 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29410 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29411 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29413 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29414 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29417 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29418 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29421 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29429 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29436 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29441 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29442 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29452 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29459 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29461 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29463 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29464 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29465 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29471 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29475 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29481 < new pts 29491, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29491 + pts count: 1 = new pts: 29492, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 28115 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29379 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29383 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29385 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29389 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29390 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29391 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29392 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29393 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29394 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29396 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29398 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29399 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29400 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29403 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29405 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29406 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29408 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29409 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29410 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29411 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29413 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29414 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29453 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29454 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29455 < new pts 29491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29490 + pts count: 1 = new pts: 29491. update pts: 29473 < new pts 29491, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1179391 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 28115 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29379 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29383 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29385 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29389 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29390 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29391 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29392 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29393 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29394 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29396 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29398 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29399 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29400 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29403 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29405 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29406 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29408 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29409 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29410 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29411 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29413 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29414 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29417 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29418 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29421 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29429 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29436 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29441 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29442 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29452 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29459 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29461 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29463 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29464 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29465 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29471 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29475 < new pts 29494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29493 + pts count: 1 = new pts: 29494. update pts: 29481 < new pts 29494, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1092907 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29493 + pts count: 1 = new pts: 29494, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29493, pts count: 1, new pts: 29494 < update pts: 29495, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29496 < new pts 29497, channel id: -Wrote 1181277 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 28115 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29379 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29383 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29385 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29389 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29390 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29391 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29392 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29393 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29394 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29396 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29398 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29399 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29400 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29403 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29405 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29406 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29408 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29409 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29410 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29411 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29413 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29414 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29453 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29454 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29455 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29473 < new pts 29497, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 28115 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29379 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29383 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29385 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29389 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29390 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29391 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29392 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29393 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29394 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29396 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29398 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29399 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29400 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29403 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29405 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29406 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29408 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29409 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29410 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29411 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29413 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29414 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29417 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29418 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29421 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29429 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29436 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29441 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29442 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29452 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29459 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29461 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29463 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29464 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29465 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29471 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29475 < new pts 29496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29495 + pts count: 1 = new pts: 29496. update pts: 29481 < new pts 29496, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1110807 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1183661 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 28115 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29379 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29383 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29385 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29389 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29390 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29391 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29392 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29393 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29394 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29396 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29398 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29399 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29400 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29403 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29405 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29406 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29408 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29409 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29410 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29411 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29413 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29414 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29417 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29418 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29421 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29429 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29436 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29441 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29442 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29452 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29459 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29461 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29463 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29464 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29465 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29471 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29475 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29497 + pts count: 1 = new pts: 29498. update pts: 29481 < new pts 29498, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29497 + pts count: 1 = new pts: 29498, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 28115 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29379 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29383 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29385 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29389 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29390 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29391 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29392 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29393 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29394 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29396 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29398 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29399 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29400 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29403 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29405 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29406 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29408 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29409 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29410 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29411 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29413 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29414 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29453 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29454 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29455 < new pts 29497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29496 + pts count: 1 = new pts: 29497. update pts: 29473 < new pts 29497, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1191583 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1120754 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 28115 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29379 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29383 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29385 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29389 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29390 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29391 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29392 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29393 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29394 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29396 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29398 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29399 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29400 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29403 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29405 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29406 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29408 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29409 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29410 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29411 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29413 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29414 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29417 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29418 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29421 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29429 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29436 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29441 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29442 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29452 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29459 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29461 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29463 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29464 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29465 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29471 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29475 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29481 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29498 < new pts 29500, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 28115 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29379 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29383 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29385 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29389 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29390 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29391 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29392 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29393 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29394 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29396 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29398 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29399 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29400 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29403 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29405 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29406 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29408 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29409 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29410 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29411 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29413 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29414 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29453 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29454 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29455 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29499 + pts count: 1 = new pts: 29500. update pts: 29473 < new pts 29500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29499 + pts count: 1 = new pts: 29500, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29500 + pts count: 1 = new pts: 29501, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29501 + pts count: 1 = new pts: 29502, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1194961 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1145744 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29503, pts count: 1, new pts: 29504 < update pts: 29505, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 28115 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29379 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29383 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29385 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29389 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29390 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29391 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29392 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29393 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29394 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29396 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29398 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29399 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29400 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29403 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29405 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29406 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29408 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29409 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29410 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29411 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29413 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29414 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29417 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29418 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29421 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29429 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29436 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29441 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29442 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29452 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29459 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29461 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29463 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29464 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29465 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29471 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29475 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29481 < new pts 29506, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29505 + pts count: 1 = new pts: 29506. update pts: 29498 < new pts 29506, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 28115 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29379 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29383 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29385 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29389 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29390 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29391 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29392 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29393 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29394 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29396 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29398 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29399 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29400 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29403 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29405 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29406 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29408 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29409 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29410 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29411 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29413 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29414 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29453 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29454 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29455 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29473 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29500 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29503 + pts count: 1 = new pts: 29504. update pts: 29501 < new pts 29504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29503 + pts count: 1 = new pts: 29504, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1197929 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 28115 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29379 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29383 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29385 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29389 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29390 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29391 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29392 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29393 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29394 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29396 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29398 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29399 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29400 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29403 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29405 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29406 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29408 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29409 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29410 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29411 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29413 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29414 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29417 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29418 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29421 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29429 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29436 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29441 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29442 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29452 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29459 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29461 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29463 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29464 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29465 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29471 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29475 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29481 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29498 < new pts 29507, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1154630 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1205829 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 28115 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29379 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29383 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29385 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29389 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29390 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29391 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29392 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29393 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29394 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29396 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29398 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29399 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29400 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29403 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29405 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29406 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29408 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29409 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29410 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29411 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29413 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29414 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29453 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29454 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29455 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29473 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29500 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29501 < new pts 29507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29506 + pts count: 1 = new pts: 29507. update pts: 29504 < new pts 29507, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 28115 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29379 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29383 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29385 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29389 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29390 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29391 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29392 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29393 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29394 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29396 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29398 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29399 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29400 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29403 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29405 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29406 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29408 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29409 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29410 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29411 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29413 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29414 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29417 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29418 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29421 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29429 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29436 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29441 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29442 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29452 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29459 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29461 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29463 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29464 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29465 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29471 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29475 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29481 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29498 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29509 < new pts 29510, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1163000 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1207271 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 28115 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29379 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29383 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29385 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29389 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29390 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29391 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29392 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29393 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29394 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29396 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29398 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29399 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29400 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29403 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29405 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29406 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29408 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29409 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29410 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29411 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29413 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29414 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29453 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29454 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29455 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29473 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29500 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29501 < new pts 29510, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29509 + pts count: 1 = new pts: 29510. update pts: 29504 < new pts 29510, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 28115 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29379 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29383 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29385 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29389 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29390 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29391 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29392 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29393 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29394 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29396 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29398 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29399 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29400 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29403 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29405 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29406 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29408 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29409 < new pts 29511, channel id: -UpdateHandler, danogentili: Handling an update of type updateMessageID... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29410 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29411 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29413 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29414 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29417 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29418 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29421 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29429 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29436 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29441 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29442 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29452 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29459 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29461 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29463 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29464 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29465 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29471 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29475 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29481 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29498 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29509 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29510 + pts count: 1 = new pts: 29511. update pts: 29510 < new pts 29511, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29510 + pts count: 1 = new pts: 29511, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1171525 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29511 + pts count: 1 = new pts: 29512, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29512 + pts count: 1 = new pts: 29513, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1212691 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 28115 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29379 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29383 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29385 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29389 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29390 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29391 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29392 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29393 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29394 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29396 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29398 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29399 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29400 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29403 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29405 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29406 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29408 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29409 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29410 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29411 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29413 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29414 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29453 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29454 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29455 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29473 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29500 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29501 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29504 < new pts 29514, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 28115 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29379 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29383 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29385 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29389 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29390 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29391 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29392 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29393 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29394 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29396 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29398 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29399 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29400 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29403 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29405 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29406 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29408 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29409 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29410 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29411 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29413 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29414 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29417 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29418 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29421 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29429 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29436 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29441 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29442 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29452 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29459 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29461 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29463 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29464 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29465 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29471 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29475 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29481 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29498 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29509 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29510 < new pts 29512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29511 + pts count: 1 = new pts: 29512. update pts: 29511 < new pts 29512, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1173823 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1218511 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 28115 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29379 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29383 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29385 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29389 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29390 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29391 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29392 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29393 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29394 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29396 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29398 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29399 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29400 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29403 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29405 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29406 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29408 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29409 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29410 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29411 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29413 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29414 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29453 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29454 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29455 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29473 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29500 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29501 < new pts 29514, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29513 + pts count: 1 = new pts: 29514. update pts: 29504 < new pts 29514, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 28115 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29379 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29383 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29385 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29389 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29390 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29391 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29392 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29393 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29394 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29396 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29398 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29399 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29400 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29403 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29405 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29406 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29408 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29409 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29410 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29411 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29413 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29414 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29417 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29418 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29421 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29429 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29436 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29441 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29442 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29452 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29459 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29461 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29463 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29464 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29465 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29471 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29475 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29481 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29498 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29509 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29510 < new pts 29515, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29514 + pts count: 1 = new pts: 29515. update pts: 29511 < new pts 29515, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1176802 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1223201 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 28115 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29379 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29383 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29385 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29389 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29390 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29391 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29392 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29393 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29394 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29396 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29398 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29399 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29400 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29403 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29405 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29406 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29408 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29409 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29410 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29411 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29413 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29414 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29417 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29418 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29421 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29429 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29436 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29441 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29442 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29452 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29459 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29461 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29463 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29464 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29465 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29471 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29475 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29481 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29498 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29509 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29510 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29511 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29516 < new pts 29518, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 28115 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29379 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29383 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29385 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29389 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29390 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29391 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29392 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29393 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29394 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29396 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29398 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29399 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29400 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29403 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29405 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29406 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29408 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29409 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29410 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29411 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29413 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29414 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29453 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29454 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29455 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29473 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29500 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29501 < new pts 29516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29515 + pts count: 1 = new pts: 29516. update pts: 29504 < new pts 29516, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1179270 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1222525 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29517, pts count: 1, new pts: 29518 < update pts: 29520, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 28115 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29379 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29383 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29385 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29389 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29390 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29391 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29392 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29393 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29394 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29396 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29398 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29399 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29400 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29403 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29405 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29406 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29408 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29409 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29410 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29411 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29413 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29414 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29417 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29418 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29421 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29429 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29436 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29441 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29442 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29452 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29459 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29461 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29463 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29464 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29465 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29471 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29475 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29481 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29498 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29509 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29510 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29511 < new pts 29518, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29517 + pts count: 1 = new pts: 29518. update pts: 29516 < new pts 29518, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 28115 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29379 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29383 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29385 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29389 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29390 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29391 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29392 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29393 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29394 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29396 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29398 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29399 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29400 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29403 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29405 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29406 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29408 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29409 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29410 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29411 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29413 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29414 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29453 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29454 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29455 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29473 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29500 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29501 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29504 < new pts 29521, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1176617 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1223517 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 28115 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29379 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29383 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29385 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29389 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29390 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29391 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29392 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29393 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29394 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29396 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29398 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29399 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29400 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29403 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29405 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29406 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29408 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29409 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29410 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29411 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29413 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29414 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29417 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29418 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29421 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29429 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29436 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29441 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29442 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29452 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29459 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29461 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29463 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29464 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29465 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29471 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29475 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29481 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29498 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29509 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29510 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29511 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29516 < new pts 29521, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 28115 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29379 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29383 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29385 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29389 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29390 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29391 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29392 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29393 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29394 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29396 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29398 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29399 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29400 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29403 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29405 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29406 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29408 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29409 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29410 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29411 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29413 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29414 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29453 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29454 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29455 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29473 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29500 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29501 < new pts 29521, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29520 + pts count: 1 = new pts: 29521. update pts: 29504 < new pts 29521, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1233457 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1186256 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 28115 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29379 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29383 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29385 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29389 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29390 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29391 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29392 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29393 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29394 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29396 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29398 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29399 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29400 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29403 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29405 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29406 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29408 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29409 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29410 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29411 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29413 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29414 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29417 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29418 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29421 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29429 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29436 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29441 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29442 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29452 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29459 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29461 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29463 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29464 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29465 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29471 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29475 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29481 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29498 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29509 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29510 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29511 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29516 < new pts 29526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29525 + pts count: 1 = new pts: 29526. update pts: 29525 < new pts 29526, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 28115 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29379 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29383 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29385 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29389 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29390 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29391 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29392 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29393 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29394 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29396 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29398 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29399 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29400 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29403 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29405 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29406 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29408 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29409 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29410 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29411 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29413 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29414 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29453 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29454 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29455 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29473 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29500 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29501 < new pts 29527, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29526 + pts count: 1 = new pts: 29527. update pts: 29504 < new pts 29527, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1237441 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29528 + pts count: 1 = new pts: 29529, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 28115 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29379 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29383 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29385 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29389 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29390 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29391 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29392 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29393 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29394 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29396 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29398 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29399 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29400 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29403 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29405 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29406 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29408 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29409 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29410 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29411 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29413 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29414 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29417 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29418 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29421 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29429 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29436 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29441 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29442 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29452 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29459 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29461 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29463 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29464 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29465 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29471 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29475 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29481 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29498 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29509 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29510 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29511 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29516 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29525 < new pts 29529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29528 + pts count: 1 = new pts: 29529. update pts: 29528 < new pts 29529, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1187354 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 28115 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29379 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29383 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29385 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29389 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29390 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29391 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29392 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29393 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29394 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29396 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29398 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29399 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29400 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29403 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29405 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29406 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29408 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29409 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29410 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29411 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29413 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29414 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29453 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29454 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29455 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29473 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29500 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29501 < new pts 29530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29529 + pts count: 1 = new pts: 29530. update pts: 29504 < new pts 29530, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1246215 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 28115 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29379 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29383 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29385 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29389 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29390 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29391 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29392 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29393 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29394 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29396 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29398 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29399 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29400 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29403 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29405 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29406 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29408 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29409 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29410 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29411 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29413 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29414 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29417 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29418 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29421 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29429 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29436 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29441 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29442 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29452 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29459 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29461 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29463 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29464 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29465 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29471 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29475 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29481 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29498 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29509 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29510 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29511 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29516 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29525 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29528 < new pts 29532, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29531 + pts count: 1 = new pts: 29532. update pts: 29531 < new pts 29532, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1190492 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29531, pts count: 1, new pts: 29532 < update pts: 29534, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1255175 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 28115 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29379 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29383 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29385 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29389 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29390 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29391 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29392 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29393 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29394 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29396 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29398 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29399 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29400 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29403 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29405 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29406 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29408 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29409 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29410 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29411 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29413 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29414 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29417 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29418 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29421 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29429 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29436 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29441 < new pts 29534, channel id: -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29442 < new pts 29534, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 28115 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29379 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29452 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29383 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29385 < new pts 29535, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29459 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29389 < new pts 29535, channel id: -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29390 < new pts 29535, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29461 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29391 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29463 < new pts 29534, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29392 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29393 < new pts 29535, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29464 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29394 < new pts 29535, channel id: -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29465 < new pts 29534, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29396 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29398 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29471 < new pts 29534, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29399 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29400 < new pts 29535, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29475 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29403 < new pts 29535, channel id: -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29481 < new pts 29534, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29405 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29406 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29498 < new pts 29534, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29408 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29409 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29509 < new pts 29534, channel id: -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29410 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29411 < new pts 29535, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29510 < new pts 29534, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29413 < new pts 29535, channel id: -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29511 < new pts 29534, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29414 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29453 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29516 < new pts 29534, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29454 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29455 < new pts 29535, channel id: -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29525 < new pts 29534, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29473 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29500 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29528 < new pts 29534, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29501 < new pts 29535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29534 + pts count: 1 = new pts: 29535. update pts: 29504 < new pts 29535, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 29533 + pts count: 1 = new pts: 29534. update pts: 29531 < new pts 29534, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1192030 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29534 + pts count: 1 = new pts: 29535, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1249419 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29534, pts count: 1, new pts: 29535 < update pts: 29536, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 28115 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29379 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29383 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29385 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29389 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29390 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29391 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29392 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29393 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29394 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29396 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29398 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29399 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29400 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29403 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29405 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29406 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29408 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29409 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29410 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29411 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29413 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29414 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29417 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29418 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29421 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29429 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29436 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29441 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29442 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29452 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29459 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29461 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29463 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29464 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29465 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29471 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29475 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29481 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29498 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29509 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29510 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29511 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29516 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29525 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29528 < new pts 29538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29537 + pts count: 1 = new pts: 29538. update pts: 29531 < new pts 29538, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 28115 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29379 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29383 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29385 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29389 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29390 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29391 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29392 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29393 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29394 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29396 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29398 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29399 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29400 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29403 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29405 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29406 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29408 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29409 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29410 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29411 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29413 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29414 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29453 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29454 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29455 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29473 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29500 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29501 < new pts 29536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29535 + pts count: 1 = new pts: 29536. update pts: 29504 < new pts 29536, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1256232 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1195689 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 28115 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29379 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29383 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29385 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29389 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29390 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29391 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29392 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29393 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29394 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29396 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29398 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29399 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29400 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29403 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29405 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29406 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29408 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29409 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29410 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29411 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29413 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29414 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29417 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29418 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29421 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29429 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29436 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29441 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29442 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29452 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29459 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29461 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29463 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29464 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29465 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29471 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29475 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29481 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29498 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29509 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29510 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29511 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29516 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29525 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29528 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29531 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29538 < new pts 29539, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1258266 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 28115 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29379 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29383 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29385 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29389 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29390 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29391 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29392 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29393 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29394 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29396 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29398 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29399 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29400 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29403 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29405 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29406 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29408 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29409 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29410 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29411 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29413 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29414 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29453 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29454 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29455 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29473 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29500 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29501 < new pts 29539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29538 + pts count: 1 = new pts: 29539. update pts: 29504 < new pts 29539, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 28115 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29379 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29383 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29385 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29389 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29390 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29391 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29392 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29393 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29394 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29396 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29398 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29399 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29400 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29403 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29405 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29406 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29408 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29409 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29410 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29411 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29413 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29414 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29417 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29418 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29421 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29429 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29436 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29441 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29442 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29452 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29459 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29461 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29463 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29464 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29465 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29471 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29475 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29481 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29498 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29509 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29510 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29511 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29516 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29525 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29528 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29531 < new pts 29542, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29541 + pts count: 1 = new pts: 29542. update pts: 29538 < new pts 29542, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1200085 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1255776 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 28115 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29379 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29383 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29385 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29389 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29390 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29391 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29392 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29393 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29394 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29396 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29398 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29399 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29400 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29403 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29405 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29406 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29408 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29409 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29410 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29411 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29413 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29414 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29453 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29454 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29455 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29473 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29500 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29501 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29504 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29542 < new pts 29543, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 28115 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29379 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29383 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29385 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29389 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29390 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29391 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29392 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29393 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29394 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29396 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29398 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29399 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29400 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29403 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29405 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29406 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29408 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29409 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29410 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29411 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29413 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29414 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29417 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29418 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29421 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29429 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29436 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29441 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29442 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29452 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29459 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29461 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29463 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29464 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29465 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29471 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29475 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29481 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29498 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29509 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29510 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29511 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29516 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29525 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29528 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29531 < new pts 29543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29542 + pts count: 1 = new pts: 29543. update pts: 29538 < new pts 29543, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1203792 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1258047 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 28115 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29379 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29383 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29385 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29389 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29390 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29391 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29392 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29393 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29394 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29396 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29398 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29399 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29400 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29403 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29405 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29406 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29408 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29409 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29410 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29411 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29413 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29414 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29417 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29418 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29421 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29429 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29436 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29441 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29442 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29452 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29459 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29461 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29463 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29464 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29465 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29471 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29475 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29481 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29498 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29509 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29510 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29511 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29516 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29525 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29528 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29531 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29538 < new pts 29545, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 28115 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29379 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29383 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29385 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29389 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29390 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29391 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29392 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29393 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29394 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29396 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29398 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29399 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29400 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29403 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29405 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29406 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29408 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29409 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29410 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29411 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29413 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29414 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29453 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29454 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29455 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29473 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29500 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29501 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29504 < new pts 29545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29544 + pts count: 1 = new pts: 29545. update pts: 29542 < new pts 29545, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1263484 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1208098 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29548, pts count: 1, new pts: 29549 < update pts: 29550, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 28115 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29379 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29383 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29385 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29389 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29390 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29391 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29392 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29393 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29394 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29396 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29398 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29399 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29400 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29403 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29405 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29406 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29408 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29409 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29410 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29411 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29413 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29414 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29417 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29418 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29421 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29429 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29436 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29441 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29442 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29452 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29459 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29461 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29463 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29464 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29465 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29471 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29475 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29481 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29498 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29509 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29510 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29511 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29516 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29525 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29528 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29531 < new pts 29551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29550 + pts count: 1 = new pts: 29551. update pts: 29538 < new pts 29551, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 28115 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29379 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29383 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29385 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29389 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29390 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29391 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29392 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29393 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29394 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29396 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29398 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29399 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29400 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29403 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29405 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29406 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29408 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29409 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29410 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29411 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29413 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29414 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29453 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29454 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29455 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29473 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29500 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29501 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29504 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29548 + pts count: 1 = new pts: 29549. update pts: 29542 < new pts 29549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29548 + pts count: 1 = new pts: 29549, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1269020 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29551, pts count: 1, new pts: 29552 < update pts: 29553, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1212577 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 28115 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29379 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29383 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29385 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29389 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29390 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29391 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29392 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29393 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29394 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29396 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29398 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29399 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29400 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29403 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29405 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29406 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29408 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29409 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29410 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29411 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29413 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29414 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29417 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29418 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29421 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29429 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29436 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29441 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29442 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29452 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29459 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29461 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29463 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29464 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29465 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29471 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29475 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29481 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29498 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29509 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29510 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29511 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29516 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29525 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29528 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29531 < new pts 29554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29553 + pts count: 1 = new pts: 29554. update pts: 29538 < new pts 29554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1269207 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 28115 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29379 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29383 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29385 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29389 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29390 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29391 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29392 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29393 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29394 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29396 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29398 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29399 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29400 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29403 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29405 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29406 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29408 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29409 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29410 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29411 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29413 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29414 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29453 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29454 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29455 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29473 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29500 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29501 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29504 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29542 < new pts 29553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29552 + pts count: 1 = new pts: 29553. update pts: 29549 < new pts 29553, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 28115 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29379 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29383 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29385 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29389 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29390 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29391 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29392 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29393 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29394 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29396 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29398 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29399 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29400 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29403 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29405 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29406 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29408 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29409 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29410 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29411 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29413 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29414 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29417 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29418 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29421 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29429 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29436 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29441 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29442 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29452 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29459 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29461 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29463 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29464 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29465 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29471 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29475 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29481 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29498 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29509 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29510 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29511 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29516 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29525 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29528 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29531 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29538 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29554 < new pts 29555, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1211687 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1272917 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 28115 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29379 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29383 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29385 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29389 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29390 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29391 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29392 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29393 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29394 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29396 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29398 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29399 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29400 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29403 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29405 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29406 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29408 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29409 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29410 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29411 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29413 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29414 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29453 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29454 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29455 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29473 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29500 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29501 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29504 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29542 < new pts 29555, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29554 + pts count: 1 = new pts: 29555. update pts: 29549 < new pts 29555, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 28115 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29379 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29383 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29385 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29389 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29390 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29391 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29392 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29393 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29394 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29396 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29398 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29399 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29400 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29403 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29405 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29406 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29408 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29409 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29410 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29411 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29413 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29414 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29417 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29418 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29421 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29429 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29436 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29441 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29442 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29452 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29459 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29461 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29463 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29464 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29465 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29471 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29475 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29481 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29498 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29509 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29510 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29511 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29516 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29525 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29528 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29531 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29538 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29555 + pts count: 1 = new pts: 29556. update pts: 29554 < new pts 29556, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29555 + pts count: 1 = new pts: 29556, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1218116 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1277623 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 28115 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29379 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29383 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29385 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29389 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29390 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29391 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29392 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29393 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29394 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29396 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29398 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29399 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29400 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29403 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29405 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29406 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29408 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29409 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29410 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29411 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29413 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29414 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29453 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29454 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29455 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29473 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29500 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29501 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29504 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29542 < new pts 29557, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29556 + pts count: 1 = new pts: 29557. update pts: 29549 < new pts 29557, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 28115 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29379 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29383 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29385 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29389 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29390 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29391 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29392 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29393 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29394 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29396 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29398 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29399 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29400 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29403 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29405 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29406 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29408 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29409 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29410 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29411 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29413 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29414 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29417 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29418 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29421 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29429 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29436 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29441 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29442 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29452 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29459 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29461 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29463 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29464 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29465 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29471 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29475 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29481 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29498 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29509 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29510 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29511 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29516 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29525 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29528 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29531 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29538 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29554 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29557 + pts count: 1 = new pts: 29558. update pts: 29556 < new pts 29558, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29557 + pts count: 1 = new pts: 29558, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1216596 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1281220 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 28115 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29379 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29383 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29385 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29389 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29390 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29391 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29392 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29393 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29394 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29396 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29398 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29399 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29400 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29403 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29405 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29406 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29408 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29409 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29410 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29411 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29413 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29414 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29417 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29418 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29421 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29429 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29436 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29441 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29442 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29452 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29459 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29461 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29463 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29464 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29465 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29471 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29475 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29481 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29498 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29509 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29510 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29511 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29516 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29525 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29528 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29531 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29538 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29554 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29556 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29558 < new pts 29559, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 28115 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29379 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29383 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29385 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29389 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29390 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29391 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29392 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29393 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29394 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29396 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29398 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29399 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29400 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29403 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29405 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29406 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29408 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29409 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29410 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29411 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29413 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29414 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29453 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29454 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29455 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29473 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29500 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29501 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29504 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29542 < new pts 29559, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29558 + pts count: 1 = new pts: 29559. update pts: 29549 < new pts 29559, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1285321 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -Wrote 1225053 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 28115 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29379 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29383 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29385 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29389 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29390 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29391 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29392 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29393 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29394 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29396 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29398 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29399 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29400 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29403 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29405 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29406 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29408 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29409 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29410 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29411 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29413 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29414 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29417 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29418 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29421 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29429 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29436 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29441 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29442 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29452 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29459 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29461 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29463 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29464 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29465 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29471 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29475 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29481 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29498 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29509 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29510 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29511 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29516 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29525 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29528 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29531 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29538 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29554 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29556 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29558 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29561 < new pts 29562, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 28115 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29379 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29383 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29385 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29389 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29390 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29391 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29392 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29393 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29394 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29396 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29398 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29399 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29400 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29403 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29405 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29406 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29408 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29409 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29410 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29411 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29413 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29414 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29453 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29454 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29455 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29473 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29500 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29501 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29504 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29542 < new pts 29562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29561 + pts count: 1 = new pts: 29562. update pts: 29549 < new pts 29562, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1289204 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1226842 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 28115 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29379 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29383 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29385 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29389 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29390 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29391 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29392 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29393 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29394 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29396 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29398 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29399 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29400 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29403 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29405 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29406 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29408 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29409 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29410 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29411 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29413 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29414 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29417 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29418 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29421 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29429 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29436 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29441 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29442 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29452 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29459 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29461 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29463 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29464 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29465 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29471 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29475 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29481 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29498 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29509 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29510 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29511 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29516 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29525 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29528 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29531 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29538 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29554 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29556 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29558 < new pts 29564, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29563 + pts count: 1 = new pts: 29564. update pts: 29561 < new pts 29564, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 28115 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29379 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29383 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29385 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29389 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29390 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29391 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29392 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29393 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29394 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29396 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29398 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29399 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29400 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29403 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29405 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29406 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29408 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29409 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29410 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29411 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29413 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29414 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29453 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29454 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29455 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29473 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29500 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29501 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29504 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29542 < new pts 29566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29565 + pts count: 1 = new pts: 29566. update pts: 29549 < new pts 29566, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1293704 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 28115 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29379 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29383 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29385 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29389 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29390 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29391 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29392 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29393 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29394 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29396 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29398 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29399 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29400 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29403 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29405 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29406 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29408 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29409 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29410 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29411 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29413 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29414 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29417 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29418 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29421 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29429 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29436 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29441 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29442 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29452 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29459 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29461 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29463 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29464 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29465 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29471 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29475 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29481 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29498 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29509 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29510 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29511 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29516 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29525 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29528 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29531 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29538 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29554 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29556 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29558 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29561 < new pts 29568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29567 + pts count: 1 = new pts: 29568. update pts: 29567 < new pts 29568, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1229900 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1297962 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 28115 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29379 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29383 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29385 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29389 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29390 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29391 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29392 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29393 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29394 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29396 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29398 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29399 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29400 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29403 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29405 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29406 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29408 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29409 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29410 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29411 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29413 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29414 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29453 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29454 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29455 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29473 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29500 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29501 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29504 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29542 < new pts 29569, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29568 + pts count: 1 = new pts: 29569. update pts: 29549 < new pts 29569, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 28115 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29379 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29383 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29385 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29389 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29390 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29391 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29392 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29393 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29394 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29396 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29398 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29399 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29400 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29403 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29405 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29406 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29408 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29409 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29410 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29411 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29413 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29414 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29417 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29418 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29421 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29429 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29436 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29441 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29442 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29452 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29459 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29461 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29463 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29464 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29465 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29471 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29475 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29481 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29498 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29509 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29510 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29511 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29516 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29525 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29528 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29531 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29538 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29554 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29556 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29558 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29561 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29569 + pts count: 1 = new pts: 29570. update pts: 29567 < new pts 29570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29569 + pts count: 1 = new pts: 29570, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29570 + pts count: 1 = new pts: 29571, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1230515 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1303554 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 28115 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29379 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29383 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29385 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29389 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29390 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29391 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29392 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29393 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29394 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29396 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29398 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29399 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29400 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29403 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29405 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29406 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29408 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29409 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29410 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29411 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29413 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29414 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29417 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29418 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29421 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29429 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29436 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29441 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29442 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29452 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29459 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29461 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29463 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29464 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29465 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29471 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29475 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29481 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29498 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29509 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29510 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29511 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29516 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29525 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29528 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29531 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29538 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29554 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29556 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29558 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29561 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29567 < new pts 29573, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29572 + pts count: 1 = new pts: 29573. update pts: 29570 < new pts 29573, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 28115 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29379 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29383 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29385 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29389 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29390 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29391 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29392 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29393 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29394 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29396 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29398 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29399 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29400 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29403 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29405 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29406 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29408 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29409 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29410 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29411 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29413 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29414 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29453 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29454 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29455 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29473 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29500 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29501 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29504 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29542 < new pts 29572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29571 + pts count: 1 = new pts: 29572. update pts: 29549 < new pts 29572, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1231960 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1304606 bytes -AuthKeyHandler, danogentili: Calling 150271... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 28115 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29379 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29383 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29385 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29389 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29390 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29391 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29392 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29393 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29394 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29396 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29398 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29399 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29400 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29403 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29405 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29406 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29408 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29409 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29410 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29411 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29413 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29414 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29417 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29418 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29421 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29429 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29436 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29441 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29442 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29452 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29459 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29461 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29463 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29464 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29465 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29471 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29475 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29481 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29498 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29509 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29510 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29511 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29516 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29525 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29528 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29531 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29538 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29554 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29556 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29558 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29561 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29567 < new pts 29575, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29574 + pts count: 1 = new pts: 29575. update pts: 29570 < new pts 29575, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 28115 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29379 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29383 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29385 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29389 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29390 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29391 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29392 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29393 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29394 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29396 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29398 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29399 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29400 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29403 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29405 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29406 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29408 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29409 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29410 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29411 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29413 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29414 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29453 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29454 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29455 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29473 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29500 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29501 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29504 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29542 < new pts 29574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29573 + pts count: 1 = new pts: 29574. update pts: 29549 < new pts 29574, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1306164 bytes -Wrote 1233927 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 28115 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29379 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29383 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29385 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29389 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29390 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29391 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29392 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29393 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29394 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29396 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29398 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29399 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29400 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29403 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29405 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29406 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29408 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29409 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29410 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29411 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29413 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29414 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29453 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29454 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29455 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29473 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29500 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29501 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29504 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29542 < new pts 29576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29575 + pts count: 1 = new pts: 29576. update pts: 29549 < new pts 29576, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1232798 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 28115 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29379 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29383 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29385 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29389 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29390 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29391 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29392 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29393 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29394 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29396 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29398 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29399 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29400 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29403 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29405 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29406 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29408 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29409 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29410 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29411 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29413 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29414 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29453 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29454 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29455 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29473 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29500 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29501 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29504 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29542 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29549 < new pts 29578, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1231552 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 28115 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29379 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29383 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29385 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29389 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29390 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29391 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29392 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29393 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29394 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29396 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29398 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29399 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29400 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29403 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29405 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29406 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29408 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29409 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29410 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29411 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29413 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29414 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29453 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29454 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29455 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29473 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29500 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29501 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29504 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29542 < new pts 29578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29577 + pts count: 1 = new pts: 29578. update pts: 29549 < new pts 29578, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1232695 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29578, pts count: 1, new pts: 29579 < update pts: 29580, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 28115 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29379 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29383 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29385 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29389 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29390 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29391 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29392 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29393 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29394 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29396 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29398 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29399 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29400 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29403 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29405 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29406 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29408 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29409 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29410 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29411 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29413 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29414 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29453 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29454 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29455 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29473 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29500 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29501 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29504 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29542 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29549 < new pts 29581, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1233218 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 28115 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29379 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29383 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29385 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29389 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29390 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29391 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29392 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29393 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29394 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29396 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29398 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29399 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29400 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29403 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29405 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29406 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29408 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29409 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29410 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29411 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29413 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29414 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29453 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29454 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29455 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29473 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29500 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29501 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29504 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29542 < new pts 29581, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29580 + pts count: 1 = new pts: 29581. update pts: 29549 < new pts 29581, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1230775 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29581 + pts count: 1 = new pts: 29582, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 28115 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29379 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29383 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29385 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29389 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29390 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29391 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29392 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29393 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29394 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29396 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29398 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29399 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29400 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29403 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29405 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29406 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29408 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29409 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29410 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29411 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29413 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29414 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29453 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29454 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29455 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29473 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29500 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29501 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29504 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29542 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29549 < new pts 29583, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1227084 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 28115 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29379 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29383 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29385 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29389 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29390 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29391 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29392 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29393 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29394 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29396 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29398 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29399 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29400 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29403 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29405 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29406 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29408 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29409 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29410 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29411 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29413 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29414 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29453 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29454 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29455 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29473 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29500 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29501 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29504 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29542 < new pts 29583, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29582 + pts count: 1 = new pts: 29583. update pts: 29549 < new pts 29583, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1228053 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 28115 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29379 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29383 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29385 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29389 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29390 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29391 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29392 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29393 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29394 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29396 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29398 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29399 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29400 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29403 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29405 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29406 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29408 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29409 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29410 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29411 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29413 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29414 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29453 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29454 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29455 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29473 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29500 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29501 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29504 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29542 < new pts 29584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29583 + pts count: 1 = new pts: 29584. update pts: 29549 < new pts 29584, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1230047 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 28115 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29379 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29383 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29385 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29389 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29390 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29391 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29392 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29393 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29394 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29396 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29398 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29399 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29400 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29403 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29405 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29406 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29408 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29409 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29410 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29411 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29413 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29414 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29453 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29454 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29455 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29473 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29500 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29501 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29504 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29542 < new pts 29585, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29584 + pts count: 1 = new pts: 29585. update pts: 29549 < new pts 29585, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1231240 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 28115 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29379 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29383 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29385 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29389 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29390 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29391 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29392 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29393 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29394 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29396 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29398 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29399 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29400 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29403 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29405 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29406 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29408 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29409 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29410 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29411 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29413 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29414 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29453 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29454 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29455 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29473 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29500 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29501 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29504 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29542 < new pts 29586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29585 + pts count: 1 = new pts: 29586. update pts: 29549 < new pts 29586, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1229229 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 28115 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29379 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29383 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29385 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29389 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29390 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29391 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29392 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29393 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29394 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29396 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29398 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29399 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29400 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29403 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29405 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29406 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29408 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29409 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29410 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29411 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29413 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29414 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29453 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29454 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29455 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29473 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29500 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29501 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29504 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29542 < new pts 29587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29586 + pts count: 1 = new pts: 29587. update pts: 29549 < new pts 29587, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1230324 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 28115 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29379 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29383 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29385 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29389 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29390 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29391 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29392 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29393 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29394 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29396 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29398 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29399 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29400 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29403 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29405 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29406 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29408 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29409 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29410 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29411 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29413 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29414 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29453 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29454 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29455 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29473 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29500 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29501 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29504 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29542 < new pts 29588, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29587 + pts count: 1 = new pts: 29588. update pts: 29549 < new pts 29588, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1230418 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 28115 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29379 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29383 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29385 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29389 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29390 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29391 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29392 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29393 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29394 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29396 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29398 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29399 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29400 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29403 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29405 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29406 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29408 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29409 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29410 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29411 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29413 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29414 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29453 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29454 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29455 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29473 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29500 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29501 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29504 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29542 < new pts 29589, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29588 + pts count: 1 = new pts: 29589. update pts: 29549 < new pts 29589, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1232222 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 28115 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29379 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29383 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29385 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29389 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29390 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29391 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29392 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29393 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29394 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29396 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29398 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29399 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29400 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29403 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29405 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29406 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29408 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29409 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29410 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29411 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29413 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29414 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29453 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29454 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29455 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29473 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29500 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29501 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29504 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29542 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29590 + pts count: 1 = new pts: 29591. update pts: 29549 < new pts 29591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29590 + pts count: 1 = new pts: 29591, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29591 + pts count: 1 = new pts: 29592, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1227926 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29592 + pts count: 1 = new pts: 29593, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 28115 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29379 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29383 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29385 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29389 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29390 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29391 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29392 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29393 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29394 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29396 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29398 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29399 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29400 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29403 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29405 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29406 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29408 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29409 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29410 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29411 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29413 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29414 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29453 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29454 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29455 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29473 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29500 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29501 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29504 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29542 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29549 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29591 < new pts 29594, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29593 + pts count: 1 = new pts: 29594. update pts: 29592 < new pts 29594, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1229417 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29593, pts count: 1, new pts: 29594 < update pts: 29595, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 28115 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29379 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29383 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29385 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29389 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29390 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29391 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29392 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29393 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29394 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29396 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29398 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29399 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29400 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29403 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29405 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29406 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29408 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29409 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29410 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29411 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29413 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29414 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29453 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29454 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29455 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29473 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29500 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29501 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29504 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29542 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29549 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29591 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29592 < new pts 29596, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1226727 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 28115 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29379 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29383 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29385 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29389 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29390 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29391 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29392 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29393 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29394 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29396 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29398 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29399 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29400 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29403 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29405 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29406 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29408 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29409 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29410 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29411 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29413 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29414 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29453 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29454 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29455 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29473 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29500 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29501 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29504 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29542 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29549 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29591 < new pts 29596, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29595 + pts count: 1 = new pts: 29596. update pts: 29592 < new pts 29596, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1224508 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 28115 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29379 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29383 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29385 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29389 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29390 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29391 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29392 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29393 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29394 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29396 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29398 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29399 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29400 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29403 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29405 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29406 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29408 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29409 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29410 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29411 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29413 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29414 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29453 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29454 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29455 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29473 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29500 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29501 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29504 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29542 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29549 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29591 < new pts 29598, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29597 + pts count: 1 = new pts: 29598. update pts: 29592 < new pts 29598, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1228089 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 28115 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29379 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29383 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29385 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29389 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29390 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29391 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29392 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29393 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29394 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29396 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29398 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29399 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29400 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29403 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29405 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29406 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29408 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29409 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29410 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29411 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29413 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29414 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29453 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29454 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29455 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29473 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29500 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29501 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29504 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29542 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29549 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29591 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29592 < new pts 29601, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1225427 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 28115 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29379 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29383 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29385 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29389 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29390 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29391 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29392 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29393 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29394 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29396 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29398 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29399 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29400 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29403 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29405 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29406 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29408 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29409 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29410 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29411 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29413 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29414 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29453 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29454 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29455 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29473 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29500 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29501 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29504 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29542 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29549 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29591 < new pts 29601, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29600 + pts count: 1 = new pts: 29601. update pts: 29592 < new pts 29601, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29602 + pts count: 1 = new pts: 29603, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1224365 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29603, pts count: 1, new pts: 29604 < update pts: 29605, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 28115 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29379 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29383 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29385 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29389 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29390 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29391 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29392 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29393 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29394 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29396 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29398 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29399 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29400 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29403 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29405 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29406 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29408 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29409 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29410 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29411 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29413 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29414 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29453 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29454 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29455 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29473 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29500 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29501 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29504 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29542 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29549 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29591 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29592 < new pts 29606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29605 + pts count: 1 = new pts: 29606. update pts: 29604 < new pts 29606, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1226841 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29605 + pts count: 1 = new pts: 29606, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29606 + pts count: 1 = new pts: 29607, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 28115 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29379 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29383 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29385 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29389 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29390 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29391 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29392 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29393 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29394 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29396 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29398 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29399 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29400 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29403 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29405 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29406 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29408 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29409 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29410 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29411 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29413 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29414 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29453 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29454 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29455 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29473 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29500 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29501 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29504 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29542 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29549 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29591 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29592 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29604 < new pts 29608, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1223744 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 28115 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29379 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29383 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29385 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29389 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29390 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29391 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29392 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29393 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29394 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29396 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29398 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29399 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29400 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29403 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29405 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29406 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29408 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29409 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29410 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29411 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29413 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29414 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29453 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29454 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29455 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29473 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29500 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29501 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29504 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29542 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29549 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29591 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29592 < new pts 29608, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29607 + pts count: 1 = new pts: 29608. update pts: 29604 < new pts 29608, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1225116 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 28115 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29379 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29383 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29385 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29389 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29390 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29391 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29392 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29393 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29394 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29396 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29398 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29399 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29400 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29403 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29405 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29406 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29408 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29409 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29410 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29411 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29413 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29414 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29453 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29454 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29455 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29473 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29500 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29501 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29504 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29542 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29549 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29591 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29592 < new pts 29609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29608 + pts count: 1 = new pts: 29609. update pts: 29604 < new pts 29609, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1224780 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 28115 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29379 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29383 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29385 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29389 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29390 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29391 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29392 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29393 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29394 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29396 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29398 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29399 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29400 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29403 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29405 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29406 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29408 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29409 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29410 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29411 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29413 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29414 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29453 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29454 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29455 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29473 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29500 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29501 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29504 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29542 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29549 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29591 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29592 < new pts 29610, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29609 + pts count: 1 = new pts: 29610. update pts: 29604 < new pts 29610, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1222170 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 28115 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29379 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29383 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29385 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29389 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29390 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29391 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29392 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29393 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29394 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29396 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29398 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29399 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29400 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29403 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29405 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29406 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29408 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29409 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29410 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29411 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29413 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29414 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29453 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29454 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29455 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29473 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29500 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29501 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29504 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29542 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29549 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29591 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29592 < new pts 29611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29610 + pts count: 1 = new pts: 29611. update pts: 29604 < new pts 29611, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1221985 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 28115 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29379 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29383 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29385 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29389 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29390 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29391 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29392 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29393 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29394 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29396 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29398 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29399 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29400 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29403 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29405 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29406 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29408 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29409 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29410 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29411 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29413 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29414 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29453 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29454 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29455 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29473 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29500 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29501 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29504 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29542 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29549 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29591 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29592 < new pts 29612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29611 + pts count: 1 = new pts: 29612. update pts: 29604 < new pts 29612, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1221165 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29612 + pts count: 1 = new pts: 29613, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 28115 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29379 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29383 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29385 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29389 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29390 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29391 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29392 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29393 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29394 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29396 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29398 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29399 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29400 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29403 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29405 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29406 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29408 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29409 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29410 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29411 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29413 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29414 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29453 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29454 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29455 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29473 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29500 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29501 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29504 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29542 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29549 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29591 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29592 < new pts 29614, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29613 + pts count: 1 = new pts: 29614. update pts: 29604 < new pts 29614, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1221152 bytes -AuthKeyHandler, danogentili: Calling 136330... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -PHP Fatal error: Uncaught danog\MadelineProto\RPCErrorException: USER_IS_BLOCKED in /home/pwrtelegram/repos/repos/MadelineProto/src/danog/MadelineProto/MTProtoTools/CallHandler.php:106 -Stack trace: -#0 /home/pwrtelegram/repos/repos/MadelineProto/src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php(566): danog\MadelineProto\MTProto->method_call('phone.requestCa...', Array) -#1 /home/pwrtelegram/repos/repos/MadelineProto/src/danog/MadelineProto/APIFactory.php(97): danog\MadelineProto\MTProto->request_call(Array) -#2 /home/pwrtelegram/repos/repos/MadelineProto/calls.php(67): danog\MadelineProto\APIFactory->__call('request_call', Array) -#3 {main} - thrown in /home/pwrtelegram/repos/repos/MadelineProto/src/danog/MadelineProto/MTProtoTools/CallHandler.php on line 106 -Deserializing MadelineProto from calls.madeline... -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Deserializing MadelineProto from calls.madeline... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Deserializing MadelineProto from calls.madeline... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -AuthKeyHandler, danogentili: VERBOSE -UpdateHandler, danogentili: Saving an update of type updateMessageID... -AuthKeyHandler, danogentili: Generating a... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -AuthKeyHandler, danogentili: Generating g_a... -Loading settings... -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -Deserializing MadelineProto from calls.madeline... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29639 + pts count: 1 = new pts: 29640. update pts: 28115 < new pts 29640, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29639 + pts count: 1 = new pts: 29640. update pts: 28115 < new pts 29640, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29640 + pts count: 1 = new pts: 29641. update pts: 28115 < new pts 29641, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29640 + pts count: 1 = new pts: 29641. update pts: 28115 < new pts 29641, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 658880 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 658476 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29640 + pts count: 1 = new pts: 29641. update pts: 28115 < new pts 29641, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 657766 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29640 + pts count: 1 = new pts: 29641. update pts: 28115 < new pts 29641, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -ResponseHandler, danogentili: Parsing pending updates... -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29640 + pts count: 1 = new pts: 29641. update pts: 28115 < new pts 29641, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 657734 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 657740 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29640 + pts count: 1 = new pts: 29641. update pts: 28115 < new pts 29641, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 664744 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29640 + pts count: 1 = new pts: 29641. update pts: 28115 < new pts 29641, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 663941 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29640 + pts count: 1 = new pts: 29641. update pts: 28115 < new pts 29641, channel id: -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 663644 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Got updates.differenceEmpty -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29640 + pts count: 1 = new pts: 29641. update pts: 28115 < new pts 29641, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29640 + pts count: 1 = new pts: 29641, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29641 + pts count: 1 = new pts: 29642. update pts: 28115 < new pts 29642, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 666271 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 666287 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29640 + pts count: 1 = new pts: 29641. update pts: 28115 < new pts 29641, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 673305 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29641 + pts count: 1 = new pts: 29642. update pts: 28115 < new pts 29642, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 674703 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29641 + pts count: 1 = new pts: 29642. update pts: 28115 < new pts 29642, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 672215 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 672117 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29641 + pts count: 1 = new pts: 29642. update pts: 28115 < new pts 29642, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29641 + pts count: 1 = new pts: 29642. update pts: 28115 < new pts 29642, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 674840 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 686660 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29641 + pts count: 1 = new pts: 29642. update pts: 28115 < new pts 29642, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29641 + pts count: 1 = new pts: 29642. update pts: 28115 < new pts 29642, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 685949 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 685396 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 682617 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29642 + pts count: 1 = new pts: 29643. update pts: 28115 < new pts 29643, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29642 + pts count: 1 = new pts: 29643. update pts: 28115 < new pts 29643, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29643 + pts count: 1 = new pts: 29644. update pts: 28115 < new pts 29644, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29643 + pts count: 1 = new pts: 29644. update pts: 28115 < new pts 29644, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29643 + pts count: 1 = new pts: 29644. update pts: 28115 < new pts 29644, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 695614 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 686868 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 697584 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29643 + pts count: 1 = new pts: 29644. update pts: 28115 < new pts 29644, channel id: -Wrote 700219 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 697445 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29644 + pts count: 1 = new pts: 29645. update pts: 28115 < new pts 29645, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29645 + pts count: 1 = new pts: 29646. update pts: 28115 < new pts 29646, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29645 + pts count: 1 = new pts: 29646. update pts: 28115 < new pts 29646, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -Wrote 705669 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29645 + pts count: 1 = new pts: 29646. update pts: 28115 < new pts 29646, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 695809 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 705741 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 714661 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29645, pts count: 1, new pts: 29646 < update pts: 29648, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -Wrote 708232 bytes -AuthKeyHandler, danogentili: Calling 603556... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29645, pts count: 1, new pts: 29646 < update pts: 29649, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29649 + pts count: 1 = new pts: 29650. update pts: 28115 < new pts 29650, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29651 + pts count: 1 = new pts: 29652. update pts: 28115 < new pts 29652, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29646 + pts count: 1 = new pts: 29647. update pts: 28115 < new pts 29647, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29647, pts count: 1, new pts: 29648 < update pts: 29653, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29648 + pts count: 1 = new pts: 29649. update pts: 28115 < new pts 29649, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 743775 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29655 + pts count: 1 = new pts: 29656. update pts: 28115 < new pts 29656, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29655 + pts count: 1 = new pts: 29656. update pts: 29650 < new pts 29656, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 733634 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 729359 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 735013 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 757836 bytes -AuthKeyHandler, danogentili: Calling 304401... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -UpdateHandler, danogentili: Duplicate update. current pts: 29655 + pts count: 1 = new pts: 29656. update pts: 28115 < new pts 29656, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29656 + pts count: 1 = new pts: 29657. update pts: 28115 < new pts 29657, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29657 + pts count: 1 = new pts: 29658. update pts: 28115 < new pts 29658, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 790558 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29657 + pts count: 1 = new pts: 29658. update pts: 28115 < new pts 29658, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29657, pts count: 1, new pts: 29658 < update pts: 29666, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29668 + pts count: 1 = new pts: 29669. update pts: 28115 < new pts 29669, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29668 + pts count: 1 = new pts: 29669. update pts: 29650 < new pts 29669, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 757418 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 757223 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29665 + pts count: 1 = new pts: 29666. update pts: 28115 < new pts 29666, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 751593 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29668 + pts count: 1 = new pts: 29669. update pts: 28115 < new pts 29669, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 794428 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29668 + pts count: 1 = new pts: 29669. update pts: 28115 < new pts 29669, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29668 + pts count: 1 = new pts: 29669. update pts: 28115 < new pts 29669, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 807692 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 767537 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29669 + pts count: 1 = new pts: 29670. update pts: 28115 < new pts 29670, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29669 + pts count: 1 = new pts: 29670. update pts: 29650 < new pts 29670, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29669 + pts count: 1 = new pts: 29670. update pts: 29669 < new pts 29670, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 767734 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 762122 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29670 + pts count: 1 = new pts: 29671. update pts: 28115 < new pts 29671, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29670 + pts count: 1 = new pts: 29671. update pts: 29670 < new pts 29671, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29670 + pts count: 1 = new pts: 29671. update pts: 28115 < new pts 29671, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29670 + pts count: 1 = new pts: 29671. update pts: 28115 < new pts 29671, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29670 + pts count: 1 = new pts: 29671, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29671 + pts count: 1 = new pts: 29672. update pts: 28115 < new pts 29672, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 818660 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 830477 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 780042 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29673 + pts count: 1 = new pts: 29674, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29674 + pts count: 1 = new pts: 29675. update pts: 28115 < new pts 29675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29674 + pts count: 1 = new pts: 29675. update pts: 29670 < new pts 29675, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 783725 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -Exception, danogentili: Undefined index: InputChannel in PeerHandler.php:292 -PeerHandler, danogentili: Undefined index: InputChannel -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 176, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getChannelDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 176, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getChannelDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 176, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getChannelDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.channelDifference -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -Exception, danogentili: Undefined index: InputChannel in PeerHandler.php:292 -PeerHandler, danogentili: Undefined index: InputChannel -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29672 + pts count: 1 = new pts: 29673. update pts: 28115 < new pts 29673, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29672 + pts count: 1 = new pts: 29673. update pts: 29650 < new pts 29673, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29672 + pts count: 1 = new pts: 29673. update pts: 29669 < new pts 29673, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.channelDifference -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -Exception, danogentili: Undefined index: InputChannel in PeerHandler.php:292 -PeerHandler, danogentili: Undefined index: InputChannel -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29673 + pts count: 1 = new pts: 29674. update pts: 28115 < new pts 29674, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 802624 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29674 + pts count: 1 = new pts: 29675. update pts: 28115 < new pts 29675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 176, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29674 + pts count: 1 = new pts: 29675, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.channelDifference -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -Exception, danogentili: Undefined index: InputChannel in PeerHandler.php:292 -PeerHandler, danogentili: Undefined index: InputChannel -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 874477 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 860307 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29674 + pts count: 1 = new pts: 29675. update pts: 28115 < new pts 29675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29674, pts count: 1, new pts: 29675 < update pts: 29677, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 807795 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 812000 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29680, pts count: 1, new pts: 29681 < update pts: 29682, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29680 + pts count: 1 = new pts: 29681. update pts: 28115 < new pts 29681, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29680 + pts count: 1 = new pts: 29681. update pts: 29670 < new pts 29681, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29680, pts count: 1, new pts: 29681 < update pts: 29684, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29684 + pts count: 1 = new pts: 29685. update pts: 28115 < new pts 29685, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29680 + pts count: 1 = new pts: 29681. update pts: 28115 < new pts 29681, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29680 + pts count: 1 = new pts: 29681. update pts: 29675 < new pts 29681, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29684 + pts count: 1 = new pts: 29685. update pts: 28115 < new pts 29685, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29684 + pts count: 1 = new pts: 29685. update pts: 29650 < new pts 29685, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29684 + pts count: 1 = new pts: 29685. update pts: 29669 < new pts 29685, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 839178 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 890711 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 828219 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 886292 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29684 + pts count: 1 = new pts: 29685. update pts: 28115 < new pts 29685, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29684 + pts count: 1 = new pts: 29685. update pts: 29677 < new pts 29685, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 849689 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29685 + pts count: 1 = new pts: 29686. update pts: 28115 < new pts 29686, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29685 + pts count: 1 = new pts: 29686. update pts: 29670 < new pts 29686, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29685 + pts count: 1 = new pts: 29686. update pts: 28115 < new pts 29686, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29685 + pts count: 1 = new pts: 29686. update pts: 29675 < new pts 29686, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29686 + pts count: 1 = new pts: 29687. update pts: 28115 < new pts 29687, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Duplicate update. current pts: 29686 + pts count: 1 = new pts: 29687. update pts: 29650 < new pts 29687, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29686 + pts count: 1 = new pts: 29687. update pts: 29669 < new pts 29687, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 853194 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29686 + pts count: 1 = new pts: 29687. update pts: 28115 < new pts 29687, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29687, pts count: 1, new pts: 29688 < update pts: 29690, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 907398 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 850912 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -Wrote 899858 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29690 + pts count: 1 = new pts: 29691, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29691 + pts count: 1 = new pts: 29692. update pts: 28115 < new pts 29692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29691 + pts count: 1 = new pts: 29692. update pts: 29677 < new pts 29692, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 871235 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29691 + pts count: 1 = new pts: 29692. update pts: 28115 < new pts 29692, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29691 + pts count: 1 = new pts: 29692. update pts: 29670 < new pts 29692, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29691 + pts count: 1 = new pts: 29692, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29690 + pts count: 1 = new pts: 29691. update pts: 28115 < new pts 29691, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29690 + pts count: 1 = new pts: 29691. update pts: 29675 < new pts 29691, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29692 + pts count: 1 = new pts: 29693. update pts: 28115 < new pts 29693, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29690 + pts count: 1 = new pts: 29691. update pts: 28115 < new pts 29691, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29690 + pts count: 1 = new pts: 29691. update pts: 29650 < new pts 29691, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29690 + pts count: 1 = new pts: 29691. update pts: 29669 < new pts 29691, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 876062 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 924170 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 868738 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29692 + pts count: 1 = new pts: 29693. update pts: 28115 < new pts 29693, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29692 + pts count: 1 = new pts: 29693. update pts: 29677 < new pts 29693, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 915415 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 890073 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29694, pts count: 1, new pts: 29695 < update pts: 29696, channel id: -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29694 + pts count: 1 = new pts: 29695. update pts: 28115 < new pts 29695, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29694 + pts count: 1 = new pts: 29695. update pts: 29670 < new pts 29695, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29694 + pts count: 1 = new pts: 29695. update pts: 28115 < new pts 29695, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29694 + pts count: 1 = new pts: 29695. update pts: 29650 < new pts 29695, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29694 + pts count: 1 = new pts: 29695. update pts: 29669 < new pts 29695, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 890526 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29696 + pts count: 1 = new pts: 29697. update pts: 28115 < new pts 29697, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29696 + pts count: 1 = new pts: 29697. update pts: 29675 < new pts 29697, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29694 + pts count: 1 = new pts: 29695. update pts: 28115 < new pts 29695, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29696 + pts count: 1 = new pts: 29697. update pts: 28115 < new pts 29697, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29696 + pts count: 1 = new pts: 29697. update pts: 29677 < new pts 29697, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 930973 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 939749 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 913071 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 888048 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 909735 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29698 + pts count: 1 = new pts: 29699. update pts: 28115 < new pts 29699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29698 + pts count: 1 = new pts: 29699. update pts: 29650 < new pts 29699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29698 + pts count: 1 = new pts: 29699. update pts: 29669 < new pts 29699, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29698 + pts count: 1 = new pts: 29699. update pts: 28115 < new pts 29699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29698 + pts count: 1 = new pts: 29699. update pts: 29670 < new pts 29699, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29698, pts count: 1, new pts: 29699 < update pts: 29700, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29698 + pts count: 1 = new pts: 29699. update pts: 28115 < new pts 29699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29698 + pts count: 1 = new pts: 29699. update pts: 29675 < new pts 29699, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29701 + pts count: 1 = new pts: 29702. update pts: 28115 < new pts 29702, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 950629 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29699 + pts count: 1 = new pts: 29700. update pts: 28115 < new pts 29700, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29699 + pts count: 1 = new pts: 29700. update pts: 29677 < new pts 29700, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 957310 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 904472 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29701, pts count: 1, new pts: 29702 < update pts: 29704, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 932881 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29705 + pts count: 1 = new pts: 29706. update pts: 28115 < new pts 29706, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29705 + pts count: 1 = new pts: 29706. update pts: 29650 < new pts 29706, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29705 + pts count: 1 = new pts: 29706. update pts: 29669 < new pts 29706, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 948297 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29703, pts count: 1, new pts: 29704 < update pts: 29706, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29703 + pts count: 1 = new pts: 29704. update pts: 28115 < new pts 29704, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29703 + pts count: 1 = new pts: 29704. update pts: 29675 < new pts 29704, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29708 + pts count: 1 = new pts: 29709. update pts: 28115 < new pts 29709, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29708 + pts count: 1 = new pts: 29709. update pts: 29670 < new pts 29709, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29704 + pts count: 1 = new pts: 29705. update pts: 28115 < new pts 29705, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29704 + pts count: 1 = new pts: 29705. update pts: 29677 < new pts 29705, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 985257 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29705 + pts count: 1 = new pts: 29706. update pts: 28115 < new pts 29706, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29708 + pts count: 1 = new pts: 29709. update pts: 28115 < new pts 29709, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29708 + pts count: 1 = new pts: 29709. update pts: 29650 < new pts 29709, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29708 + pts count: 1 = new pts: 29709. update pts: 29669 < new pts 29709, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 926237 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29711, pts count: 1, new pts: 29712 < update pts: 29715, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29716 + pts count: 1 = new pts: 29717. update pts: 28115 < new pts 29717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29716 + pts count: 1 = new pts: 29717. update pts: 29675 < new pts 29717, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 977122 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -Wrote 954918 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1002535 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1006127 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 951528 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29713 + pts count: 1 = new pts: 29714. update pts: 28115 < new pts 29714, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29713 + pts count: 1 = new pts: 29714, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29713 + pts count: 1 = new pts: 29714. update pts: 28115 < new pts 29714, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29713 + pts count: 1 = new pts: 29714. update pts: 29677 < new pts 29714, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29716 + pts count: 1 = new pts: 29717, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29714 + pts count: 1 = new pts: 29715. update pts: 28115 < new pts 29715, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29714 + pts count: 1 = new pts: 29715. update pts: 29670 < new pts 29715, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29717 + pts count: 1 = new pts: 29718. update pts: 28115 < new pts 29718, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29717 + pts count: 1 = new pts: 29718. update pts: 29650 < new pts 29718, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29717 + pts count: 1 = new pts: 29718. update pts: 29669 < new pts 29718, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29716 + pts count: 1 = new pts: 29717. update pts: 28115 < new pts 29717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29716 + pts count: 1 = new pts: 29717. update pts: 29675 < new pts 29717, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1000964 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 970031 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1015661 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1021151 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 962431 bytes -AuthKeyHandler, danogentili: Calling 13316... -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -AuthKeyHandler, danogentili: Generating g_a... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29718 + pts count: 1 = new pts: 29719, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29718 + pts count: 1 = new pts: 29719. update pts: 28115 < new pts 29719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29718 + pts count: 1 = new pts: 29719. update pts: 29714 < new pts 29719, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29718 + pts count: 1 = new pts: 29719. update pts: 28115 < new pts 29719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29718 + pts count: 1 = new pts: 29719. update pts: 29677 < new pts 29719, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29718, pts count: 1, new pts: 29719 < update pts: 29720, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29718 + pts count: 1 = new pts: 29719. update pts: 28115 < new pts 29719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29718 + pts count: 1 = new pts: 29719. update pts: 29670 < new pts 29719, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29720 + pts count: 1 = new pts: 29721. update pts: 28115 < new pts 29721, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29720 + pts count: 1 = new pts: 29721. update pts: 29650 < new pts 29721, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29720 + pts count: 1 = new pts: 29721. update pts: 29669 < new pts 29721, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29719 + pts count: 1 = new pts: 29720. update pts: 28115 < new pts 29720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29719 + pts count: 1 = new pts: 29720. update pts: 29675 < new pts 29720, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1029673 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1014572 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 977623 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -Wrote 1041819 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 984058 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29721 + pts count: 1 = new pts: 29722. update pts: 28115 < new pts 29722, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29721 + pts count: 1 = new pts: 29722. update pts: 29670 < new pts 29722, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29721 + pts count: 1 = new pts: 29722. update pts: 28115 < new pts 29722, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29721 + pts count: 1 = new pts: 29722. update pts: 29714 < new pts 29722, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29721 + pts count: 1 = new pts: 29722. update pts: 28115 < new pts 29722, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29721 + pts count: 1 = new pts: 29722. update pts: 29675 < new pts 29722, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29721, pts count: 1, new pts: 29722 < update pts: 29723, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29721 + pts count: 1 = new pts: 29722. update pts: 28115 < new pts 29722, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29721 + pts count: 1 = new pts: 29722. update pts: 29677 < new pts 29722, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29723 + pts count: 1 = new pts: 29724. update pts: 28115 < new pts 29724, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29723 + pts count: 1 = new pts: 29724. update pts: 29650 < new pts 29724, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29723 + pts count: 1 = new pts: 29724. update pts: 29669 < new pts 29724, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1045251 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1034550 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29725, pts count: 1, new pts: 29726 < update pts: 29728, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 999097 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1000756 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -Wrote 1072960 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29726, pts count: 1, new pts: 29727 < update pts: 29729, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29725 + pts count: 1 = new pts: 29726. update pts: 28115 < new pts 29726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29725 + pts count: 1 = new pts: 29726. update pts: 29670 < new pts 29726, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29729 + pts count: 1 = new pts: 29730. update pts: 28115 < new pts 29730, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29729 + pts count: 1 = new pts: 29730. update pts: 29714 < new pts 29730, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29730 + pts count: 1 = new pts: 29731. update pts: 28115 < new pts 29731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29730 + pts count: 1 = new pts: 29731. update pts: 29675 < new pts 29731, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29726 + pts count: 1 = new pts: 29727. update pts: 28115 < new pts 29727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29726 + pts count: 1 = new pts: 29727. update pts: 29677 < new pts 29727, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29727 + pts count: 1 = new pts: 29728. update pts: 28115 < new pts 29728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29727 + pts count: 1 = new pts: 29728. update pts: 29650 < new pts 29728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29727 + pts count: 1 = new pts: 29728. update pts: 29669 < new pts 29728, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1063043 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -Wrote 1063640 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1028534 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1026981 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -Wrote 1095293 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29731 + pts count: 1 = new pts: 29732. update pts: 28115 < new pts 29732, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29731 + pts count: 1 = new pts: 29732. update pts: 29670 < new pts 29732, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29733 + pts count: 1 = new pts: 29734. update pts: 28115 < new pts 29734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29733 + pts count: 1 = new pts: 29734. update pts: 29714 < new pts 29734, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29733, pts count: 1, new pts: 29734 < update pts: 29735, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29733, pts count: 1, new pts: 29734 < update pts: 29736, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29737 + pts count: 1 = new pts: 29738. update pts: 28115 < new pts 29738, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29737 + pts count: 1 = new pts: 29738. update pts: 29675 < new pts 29738, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29733 + pts count: 1 = new pts: 29734. update pts: 28115 < new pts 29734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29733 + pts count: 1 = new pts: 29734. update pts: 29650 < new pts 29734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29733 + pts count: 1 = new pts: 29734. update pts: 29669 < new pts 29734, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29737 + pts count: 1 = new pts: 29738. update pts: 28115 < new pts 29738, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29737 + pts count: 1 = new pts: 29738. update pts: 29677 < new pts 29738, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1079046 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1079406 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Generating g_a... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Generating g_a... -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1111031 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29737 + pts count: 1 = new pts: 29738. update pts: 28115 < new pts 29738, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29737 + pts count: 1 = new pts: 29738. update pts: 29670 < new pts 29738, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1060846 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1051554 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29739 + pts count: 1 = new pts: 29740, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29739 + pts count: 1 = new pts: 29740. update pts: 28115 < new pts 29740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29739 + pts count: 1 = new pts: 29740. update pts: 29714 < new pts 29740, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29739 + pts count: 1 = new pts: 29740. update pts: 28115 < new pts 29740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29739 + pts count: 1 = new pts: 29740. update pts: 29650 < new pts 29740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29739 + pts count: 1 = new pts: 29740. update pts: 29669 < new pts 29740, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29739 + pts count: 1 = new pts: 29740. update pts: 28115 < new pts 29740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29739 + pts count: 1 = new pts: 29740. update pts: 29675 < new pts 29740, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29740 + pts count: 1 = new pts: 29741. update pts: 28115 < new pts 29741, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29740 + pts count: 1 = new pts: 29741. update pts: 29677 < new pts 29741, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1092588 bytes -AuthKeyHandler, danogentili: Calling 267654... -ResponseHandler, danogentili: Received msg_container. -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1095614 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29741 + pts count: 1 = new pts: 29742. update pts: 28115 < new pts 29742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29741 + pts count: 1 = new pts: 29742. update pts: 29670 < new pts 29742, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1127615 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1077450 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -AuthKeyHandler, danogentili: Generating g_a... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -Wrote 1080267 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29745 + pts count: 1 = new pts: 29746. update pts: 28115 < new pts 29746, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29745 + pts count: 1 = new pts: 29746. update pts: 29714 < new pts 29746, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29745 + pts count: 1 = new pts: 29746. update pts: 28115 < new pts 29746, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29745 + pts count: 1 = new pts: 29746. update pts: 29650 < new pts 29746, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29745 + pts count: 1 = new pts: 29746. update pts: 29669 < new pts 29746, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29745 + pts count: 1 = new pts: 29746. update pts: 29745 < new pts 29746, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29745 + pts count: 1 = new pts: 29746. update pts: 28115 < new pts 29746, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29745 + pts count: 1 = new pts: 29746. update pts: 29675 < new pts 29746, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29745 + pts count: 1 = new pts: 29746. update pts: 28115 < new pts 29746, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29745 + pts count: 1 = new pts: 29746. update pts: 29677 < new pts 29746, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1105251 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1116776 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29745, pts count: 1, new pts: 29746 < update pts: 29750, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1091839 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29748, pts count: 1, new pts: 29749 < update pts: 29752, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1144000 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29752 + pts count: 1 = new pts: 29753. update pts: 28115 < new pts 29753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29752 + pts count: 1 = new pts: 29753. update pts: 29670 < new pts 29753, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1090990 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29752 + pts count: 1 = new pts: 29753. update pts: 28115 < new pts 29753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29752 + pts count: 1 = new pts: 29753. update pts: 29714 < new pts 29753, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29748 + pts count: 1 = new pts: 29749. update pts: 28115 < new pts 29749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29748 + pts count: 1 = new pts: 29749. update pts: 29677 < new pts 29749, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29748 + pts count: 1 = new pts: 29749. update pts: 28115 < new pts 29749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29748 + pts count: 1 = new pts: 29749. update pts: 29650 < new pts 29749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29748 + pts count: 1 = new pts: 29749. update pts: 29669 < new pts 29749, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29748 + pts count: 1 = new pts: 29749. update pts: 29745 < new pts 29749, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29749 + pts count: 1 = new pts: 29750. update pts: 28115 < new pts 29750, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29749 + pts count: 1 = new pts: 29750. update pts: 29675 < new pts 29750, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1135115 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1143971 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29754, pts count: 1, new pts: 29755 < update pts: 29756, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1108454 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1164618 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1106472 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 29758 + pts count: 1 = new pts: 29759. update pts: 29757 < new pts 29759, channel id: -ResponseHandler, danogentili: Received msgs_ack. -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29758 + pts count: 1 = new pts: 29759. update pts: 28115 < new pts 29759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29758 + pts count: 1 = new pts: 29759. update pts: 29670 < new pts 29759, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -AuthKeyHandler, danogentili: Generating g_a... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29755 + pts count: 1 = new pts: 29756. update pts: 28115 < new pts 29756, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29755 + pts count: 1 = new pts: 29756. update pts: 29714 < new pts 29756, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29755 + pts count: 1 = new pts: 29756. update pts: 28115 < new pts 29756, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29755 + pts count: 1 = new pts: 29756. update pts: 29677 < new pts 29756, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29755 + pts count: 1 = new pts: 29756. update pts: 28115 < new pts 29756, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29755 + pts count: 1 = new pts: 29756. update pts: 29650 < new pts 29756, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29755 + pts count: 1 = new pts: 29756. update pts: 29669 < new pts 29756, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29755 + pts count: 1 = new pts: 29756. update pts: 29745 < new pts 29756, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29755, pts count: 1, new pts: 29756 < update pts: 29759, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29759 + pts count: 1 = new pts: 29760. update pts: 28115 < new pts 29760, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29759 + pts count: 1 = new pts: 29760. update pts: 29675 < new pts 29760, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1154566 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1156598 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1121500 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29759 + pts count: 1 = new pts: 29760. update pts: 28115 < new pts 29760, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29759 + pts count: 1 = new pts: 29760. update pts: 29670 < new pts 29760, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1176499 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29760 + pts count: 1 = new pts: 29761, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1124362 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29761, pts count: 1, new pts: 29762 < update pts: 29763, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -AuthKeyHandler, danogentili: Generating g_a... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29760, pts count: 1, new pts: 29761 < update pts: 29764, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29760 + pts count: 1 = new pts: 29761. update pts: 28115 < new pts 29761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29760 + pts count: 1 = new pts: 29761. update pts: 29714 < new pts 29761, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29764 + pts count: 1 = new pts: 29765. update pts: 28115 < new pts 29765, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29764 + pts count: 1 = new pts: 29765. update pts: 29677 < new pts 29765, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29760 + pts count: 1 = new pts: 29761. update pts: 28115 < new pts 29761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29760 + pts count: 1 = new pts: 29761. update pts: 29650 < new pts 29761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29760 + pts count: 1 = new pts: 29761. update pts: 29669 < new pts 29761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29760 + pts count: 1 = new pts: 29761. update pts: 29745 < new pts 29761, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29764 + pts count: 1 = new pts: 29765. update pts: 28115 < new pts 29765, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29764 + pts count: 1 = new pts: 29765. update pts: 29675 < new pts 29765, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1168484 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1150356 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29764 + pts count: 1 = new pts: 29765. update pts: 28115 < new pts 29765, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29764 + pts count: 1 = new pts: 29765. update pts: 29670 < new pts 29765, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -Wrote 1196686 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -Wrote 1183735 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29768 + pts count: 1 = new pts: 29769, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 29769 + pts count: 1 = new pts: 29770, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1157945 bytes -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29770 + pts count: 1 = new pts: 29771. update pts: 28115 < new pts 29771, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29770 + pts count: 1 = new pts: 29771. update pts: 29650 < new pts 29771, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29770 + pts count: 1 = new pts: 29771. update pts: 29669 < new pts 29771, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29770 + pts count: 1 = new pts: 29771. update pts: 29745 < new pts 29771, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29768 + pts count: 1 = new pts: 29769. update pts: 28115 < new pts 29769, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29768 + pts count: 1 = new pts: 29769. update pts: 29677 < new pts 29769, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29768 + pts count: 1 = new pts: 29769. update pts: 28115 < new pts 29769, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29768 + pts count: 1 = new pts: 29769. update pts: 29714 < new pts 29769, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29768, pts count: 1, new pts: 29769 < update pts: 29772, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1185493 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1209569 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -AuthKeyHandler, danogentili: VERBOSE -UpdateHandler, danogentili: Handling an update of type updateMessageID... -AuthKeyHandler, danogentili: Generating a... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29773 + pts count: 1 = new pts: 29774. update pts: 28115 < new pts 29774, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -AuthKeyHandler, danogentili: Generating g_a... -UpdateHandler, danogentili: Duplicate update. current pts: 29773 + pts count: 1 = new pts: 29774. update pts: 29675 < new pts 29774, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1175057 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1196120 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29771 + pts count: 1 = new pts: 29772. update pts: 28115 < new pts 29772, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29771 + pts count: 1 = new pts: 29772. update pts: 29670 < new pts 29772, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29772 + pts count: 1 = new pts: 29773. update pts: 28115 < new pts 29773, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29772 + pts count: 1 = new pts: 29773. update pts: 29650 < new pts 29773, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29772 + pts count: 1 = new pts: 29773. update pts: 29669 < new pts 29773, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29772 + pts count: 1 = new pts: 29773. update pts: 29745 < new pts 29773, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29773 + pts count: 1 = new pts: 29774. update pts: 28115 < new pts 29774, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29773 + pts count: 1 = new pts: 29774. update pts: 29677 < new pts 29774, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29773 + pts count: 1 = new pts: 29774. update pts: 28115 < new pts 29774, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29773 + pts count: 1 = new pts: 29774. update pts: 29714 < new pts 29774, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1175995 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1193966 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29773, pts count: 1, new pts: 29774 < update pts: 29776, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29773, pts count: 1, new pts: 29774 < update pts: 29777, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1223118 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1187463 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29779 + pts count: 1 = new pts: 29780. update pts: 28115 < new pts 29780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29779 + pts count: 1 = new pts: 29780. update pts: 29675 < new pts 29780, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1212326 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29779 + pts count: 1 = new pts: 29780. update pts: 28115 < new pts 29780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29779 + pts count: 1 = new pts: 29780. update pts: 29670 < new pts 29780, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29776 + pts count: 1 = new pts: 29777. update pts: 28115 < new pts 29777, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29776 + pts count: 1 = new pts: 29777. update pts: 29650 < new pts 29777, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29776 + pts count: 1 = new pts: 29777. update pts: 29669 < new pts 29777, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29776 + pts count: 1 = new pts: 29777. update pts: 29745 < new pts 29777, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29777 + pts count: 1 = new pts: 29778. update pts: 28115 < new pts 29778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29777 + pts count: 1 = new pts: 29778. update pts: 29677 < new pts 29778, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29779 + pts count: 1 = new pts: 29780. update pts: 28115 < new pts 29780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29779 + pts count: 1 = new pts: 29780. update pts: 29714 < new pts 29780, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1196935 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1216067 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29779, pts count: 1, new pts: 29780 < update pts: 29782, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1238639 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29779 + pts count: 1 = new pts: 29780. update pts: 28115 < new pts 29780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29779 + pts count: 1 = new pts: 29780. update pts: 29675 < new pts 29780, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1211494 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29783 + pts count: 1 = new pts: 29784. update pts: 28115 < new pts 29784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29783 + pts count: 1 = new pts: 29784. update pts: 29670 < new pts 29784, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29781 + pts count: 1 = new pts: 29782. update pts: 28115 < new pts 29782, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29781 + pts count: 1 = new pts: 29782. update pts: 29650 < new pts 29782, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29781 + pts count: 1 = new pts: 29782. update pts: 29669 < new pts 29782, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29781 + pts count: 1 = new pts: 29782. update pts: 29745 < new pts 29782, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1227858 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29783 + pts count: 1 = new pts: 29784. update pts: 28115 < new pts 29784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29783 + pts count: 1 = new pts: 29784. update pts: 29677 < new pts 29784, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1218281 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29783 + pts count: 1 = new pts: 29784. update pts: 28115 < new pts 29784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29783 + pts count: 1 = new pts: 29784. update pts: 29714 < new pts 29784, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1237117 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1250205 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1230057 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29784 + pts count: 1 = new pts: 29785. update pts: 28115 < new pts 29785, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29784 + pts count: 1 = new pts: 29785. update pts: 29675 < new pts 29785, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29784 + pts count: 1 = new pts: 29785. update pts: 28115 < new pts 29785, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29784 + pts count: 1 = new pts: 29785. update pts: 29670 < new pts 29785, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29784 + pts count: 1 = new pts: 29785. update pts: 28115 < new pts 29785, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29784 + pts count: 1 = new pts: 29785. update pts: 29650 < new pts 29785, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29784 + pts count: 1 = new pts: 29785. update pts: 29669 < new pts 29785, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29784 + pts count: 1 = new pts: 29785. update pts: 29745 < new pts 29785, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1238625 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29787 + pts count: 1 = new pts: 29788. update pts: 28115 < new pts 29788, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29787 + pts count: 1 = new pts: 29788. update pts: 29677 < new pts 29788, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29788 + pts count: 1 = new pts: 29789. update pts: 28115 < new pts 29789, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29788 + pts count: 1 = new pts: 29789. update pts: 29714 < new pts 29789, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1229850 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1261591 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1248689 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29788, pts count: 1, new pts: 29789 < update pts: 29790, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29788, pts count: 1, new pts: 29789 < update pts: 29791, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1243511 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29788 + pts count: 1 = new pts: 29789. update pts: 28115 < new pts 29789, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29788 + pts count: 1 = new pts: 29789. update pts: 29675 < new pts 29789, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29791 + pts count: 1 = new pts: 29792. update pts: 28115 < new pts 29792, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29791 + pts count: 1 = new pts: 29792. update pts: 29650 < new pts 29792, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29791 + pts count: 1 = new pts: 29792. update pts: 29669 < new pts 29792, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29791 + pts count: 1 = new pts: 29792. update pts: 29745 < new pts 29792, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29791 + pts count: 1 = new pts: 29792. update pts: 28115 < new pts 29792, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29791 + pts count: 1 = new pts: 29792. update pts: 29670 < new pts 29792, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29791 + pts count: 1 = new pts: 29792. update pts: 28115 < new pts 29792, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29791 + pts count: 1 = new pts: 29792. update pts: 29677 < new pts 29792, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1245735 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29791 + pts count: 1 = new pts: 29792. update pts: 28115 < new pts 29792, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29791 + pts count: 1 = new pts: 29792. update pts: 29714 < new pts 29792, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1244505 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1287906 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received updates. -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -Wrote 1280598 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1262527 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29793, pts count: 1, new pts: 29794 < update pts: 29800, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29796 + pts count: 1 = new pts: 29797. update pts: 28115 < new pts 29797, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29796 + pts count: 1 = new pts: 29797. update pts: 29650 < new pts 29797, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29796 + pts count: 1 = new pts: 29797. update pts: 29669 < new pts 29797, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29796 + pts count: 1 = new pts: 29797. update pts: 29745 < new pts 29797, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29796 + pts count: 1 = new pts: 29797. update pts: 29796 < new pts 29797, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1261563 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29798 + pts count: 1 = new pts: 29799. update pts: 28115 < new pts 29799, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29798 + pts count: 1 = new pts: 29799. update pts: 29670 < new pts 29799, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29800 + pts count: 1 = new pts: 29801. update pts: 28115 < new pts 29801, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29800 + pts count: 1 = new pts: 29801. update pts: 29675 < new pts 29801, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29798 + pts count: 1 = new pts: 29799. update pts: 28115 < new pts 29799, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29798 + pts count: 1 = new pts: 29799. update pts: 29677 < new pts 29799, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29798 + pts count: 1 = new pts: 29799, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29799 + pts count: 1 = new pts: 29800. update pts: 28115 < new pts 29800, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29799 + pts count: 1 = new pts: 29800. update pts: 29714 < new pts 29800, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1299802 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1283613 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29800, pts count: 1, new pts: 29801 < update pts: 29802, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1280821 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1269585 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29800 + pts count: 1 = new pts: 29801. update pts: 28115 < new pts 29801, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29800 + pts count: 1 = new pts: 29801. update pts: 29650 < new pts 29801, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29800 + pts count: 1 = new pts: 29801. update pts: 29669 < new pts 29801, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29800 + pts count: 1 = new pts: 29801. update pts: 29745 < new pts 29801, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29800 + pts count: 1 = new pts: 29801. update pts: 29796 < new pts 29801, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1273516 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29804 + pts count: 1 = new pts: 29805. update pts: 28115 < new pts 29805, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29804 + pts count: 1 = new pts: 29805. update pts: 29670 < new pts 29805, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29801 + pts count: 1 = new pts: 29802. update pts: 28115 < new pts 29802, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29801 + pts count: 1 = new pts: 29802. update pts: 29677 < new pts 29802, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29801 + pts count: 1 = new pts: 29802. update pts: 29799 < new pts 29802, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29801 + pts count: 1 = new pts: 29802. update pts: 28115 < new pts 29802, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29801 + pts count: 1 = new pts: 29802. update pts: 29675 < new pts 29802, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29803 + pts count: 1 = new pts: 29804. update pts: 28115 < new pts 29804, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29803 + pts count: 1 = new pts: 29804. update pts: 29714 < new pts 29804, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1312259 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1302591 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1280388 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1296656 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1279186 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29805 + pts count: 1 = new pts: 29806. update pts: 28115 < new pts 29806, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29805 + pts count: 1 = new pts: 29806. update pts: 29650 < new pts 29806, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29805 + pts count: 1 = new pts: 29806. update pts: 29669 < new pts 29806, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29805 + pts count: 1 = new pts: 29806. update pts: 29745 < new pts 29806, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29805 + pts count: 1 = new pts: 29806. update pts: 29796 < new pts 29806, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29807 + pts count: 1 = new pts: 29808. update pts: 28115 < new pts 29808, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29807 + pts count: 1 = new pts: 29808. update pts: 29670 < new pts 29808, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29807 + pts count: 1 = new pts: 29808. update pts: 29806 < new pts 29808, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29808 + pts count: 1 = new pts: 29809. update pts: 28115 < new pts 29809, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29808 + pts count: 1 = new pts: 29809. update pts: 29675 < new pts 29809, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29808 + pts count: 1 = new pts: 29809. update pts: 28115 < new pts 29809, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29808 + pts count: 1 = new pts: 29809. update pts: 29677 < new pts 29809, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29808 + pts count: 1 = new pts: 29809. update pts: 29799 < new pts 29809, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29808 + pts count: 1 = new pts: 29809. update pts: 28115 < new pts 29809, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29808 + pts count: 1 = new pts: 29809. update pts: 29714 < new pts 29809, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1323245 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1316061 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1295877 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1309116 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1289719 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29811 + pts count: 1 = new pts: 29812. update pts: 28115 < new pts 29812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29811 + pts count: 1 = new pts: 29812. update pts: 29650 < new pts 29812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29811 + pts count: 1 = new pts: 29812. update pts: 29669 < new pts 29812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29811 + pts count: 1 = new pts: 29812. update pts: 29745 < new pts 29812, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29811 + pts count: 1 = new pts: 29812. update pts: 29796 < new pts 29812, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29812 + pts count: 1 = new pts: 29813. update pts: 28115 < new pts 29813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29812 + pts count: 1 = new pts: 29813. update pts: 29670 < new pts 29813, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29812 + pts count: 1 = new pts: 29813. update pts: 29806 < new pts 29813, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29813 + pts count: 1 = new pts: 29814. update pts: 28115 < new pts 29814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29813 + pts count: 1 = new pts: 29814. update pts: 29675 < new pts 29814, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29813 + pts count: 1 = new pts: 29814. update pts: 28115 < new pts 29814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29813 + pts count: 1 = new pts: 29814. update pts: 29677 < new pts 29814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29813 + pts count: 1 = new pts: 29814. update pts: 29799 < new pts 29814, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29813 + pts count: 1 = new pts: 29814. update pts: 28115 < new pts 29814, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29813 + pts count: 1 = new pts: 29814. update pts: 29714 < new pts 29814, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1297624 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1325865 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1321424 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1315565 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1278562 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29814 + pts count: 1 = new pts: 29815. update pts: 28115 < new pts 29815, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29814 + pts count: 1 = new pts: 29815. update pts: 29675 < new pts 29815, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29814 + pts count: 1 = new pts: 29815. update pts: 28115 < new pts 29815, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29814 + pts count: 1 = new pts: 29815. update pts: 29650 < new pts 29815, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29814 + pts count: 1 = new pts: 29815. update pts: 29669 < new pts 29815, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29814 + pts count: 1 = new pts: 29815. update pts: 29745 < new pts 29815, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29814 + pts count: 1 = new pts: 29815. update pts: 29796 < new pts 29815, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29814 + pts count: 1 = new pts: 29815. update pts: 28115 < new pts 29815, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29814 + pts count: 1 = new pts: 29815. update pts: 29670 < new pts 29815, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29814 + pts count: 1 = new pts: 29815. update pts: 29806 < new pts 29815, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29815 + pts count: 1 = new pts: 29816. update pts: 28115 < new pts 29816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29815 + pts count: 1 = new pts: 29816. update pts: 29677 < new pts 29816, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29815 + pts count: 1 = new pts: 29816. update pts: 29799 < new pts 29816, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29816 + pts count: 1 = new pts: 29817. update pts: 28115 < new pts 29817, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29816 + pts count: 1 = new pts: 29817. update pts: 29714 < new pts 29817, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1302018 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1332263 bytes -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29818, pts count: 1, new pts: 29819 < update pts: 29821, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1330503 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29818, pts count: 1, new pts: 29819 < update pts: 29822, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -Wrote 1322638 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1282995 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29824 + pts count: 1 = new pts: 29825. update pts: 28115 < new pts 29825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29824 + pts count: 1 = new pts: 29825. update pts: 29650 < new pts 29825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29824 + pts count: 1 = new pts: 29825. update pts: 29669 < new pts 29825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29824 + pts count: 1 = new pts: 29825. update pts: 29745 < new pts 29825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29824 + pts count: 1 = new pts: 29825. update pts: 29796 < new pts 29825, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29824 + pts count: 1 = new pts: 29825. update pts: 28115 < new pts 29825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29824 + pts count: 1 = new pts: 29825. update pts: 29675 < new pts 29825, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Duplicate update. current pts: 29819 + pts count: 1 = new pts: 29820. update pts: 28115 < new pts 29820, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29819 + pts count: 1 = new pts: 29820. update pts: 29670 < new pts 29820, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29819 + pts count: 1 = new pts: 29820. update pts: 29806 < new pts 29820, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29819 + pts count: 1 = new pts: 29820. update pts: 28115 < new pts 29820, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29819 + pts count: 1 = new pts: 29820. update pts: 29677 < new pts 29820, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29819 + pts count: 1 = new pts: 29820. update pts: 29799 < new pts 29820, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29819 + pts count: 1 = new pts: 29820. update pts: 28115 < new pts 29820, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29819 + pts count: 1 = new pts: 29820. update pts: 29714 < new pts 29820, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29819 + pts count: 1 = new pts: 29820, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1312522 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1345465 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1338558 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1332337 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1294285 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29825 + pts count: 1 = new pts: 29826. update pts: 28115 < new pts 29826, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29825 + pts count: 1 = new pts: 29826. update pts: 29675 < new pts 29826, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29826 + pts count: 1 = new pts: 29827, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29825 + pts count: 1 = new pts: 29826. update pts: 28115 < new pts 29826, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29825 + pts count: 1 = new pts: 29826. update pts: 29650 < new pts 29826, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29825 + pts count: 1 = new pts: 29826. update pts: 29669 < new pts 29826, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29825 + pts count: 1 = new pts: 29826. update pts: 29745 < new pts 29826, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29825 + pts count: 1 = new pts: 29826. update pts: 29796 < new pts 29826, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29827 + pts count: 1 = new pts: 29828, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29828 + pts count: 1 = new pts: 29829. update pts: 28115 < new pts 29829, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29828 + pts count: 1 = new pts: 29829. update pts: 29714 < new pts 29829, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29828 + pts count: 1 = new pts: 29829. update pts: 29820 < new pts 29829, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29826 + pts count: 1 = new pts: 29827. update pts: 28115 < new pts 29827, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29826 + pts count: 1 = new pts: 29827. update pts: 29670 < new pts 29827, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29826 + pts count: 1 = new pts: 29827. update pts: 29806 < new pts 29827, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29826 + pts count: 1 = new pts: 29827. update pts: 28115 < new pts 29827, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29826 + pts count: 1 = new pts: 29827. update pts: 29677 < new pts 29827, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29826 + pts count: 1 = new pts: 29827. update pts: 29799 < new pts 29827, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1350762 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1314487 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1289546 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1337665 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1336615 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29829 + pts count: 1 = new pts: 29830. update pts: 28115 < new pts 29830, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29829 + pts count: 1 = new pts: 29830. update pts: 29650 < new pts 29830, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29829 + pts count: 1 = new pts: 29830. update pts: 29669 < new pts 29830, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29829 + pts count: 1 = new pts: 29830. update pts: 29745 < new pts 29830, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29829 + pts count: 1 = new pts: 29830. update pts: 29796 < new pts 29830, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29829, pts count: 1, new pts: 29830 < update pts: 29831, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29831 + pts count: 1 = new pts: 29832. update pts: 28115 < new pts 29832, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29831 + pts count: 1 = new pts: 29832. update pts: 29675 < new pts 29832, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29829 + pts count: 1 = new pts: 29830. update pts: 28115 < new pts 29830, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29829 + pts count: 1 = new pts: 29830. update pts: 29714 < new pts 29830, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29829 + pts count: 1 = new pts: 29830. update pts: 29820 < new pts 29830, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29829 + pts count: 1 = new pts: 29830. update pts: 28115 < new pts 29830, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29829 + pts count: 1 = new pts: 29830. update pts: 29670 < new pts 29830, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29829 + pts count: 1 = new pts: 29830. update pts: 29806 < new pts 29830, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29829 + pts count: 1 = new pts: 29830. update pts: 28115 < new pts 29830, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29829 + pts count: 1 = new pts: 29830. update pts: 29677 < new pts 29830, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29829 + pts count: 1 = new pts: 29830. update pts: 29799 < new pts 29830, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29829, pts count: 1, new pts: 29830 < update pts: 29835, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1349175 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1300485 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29833 + pts count: 1 = new pts: 29834. update pts: 28115 < new pts 29834, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29833 + pts count: 1 = new pts: 29834. update pts: 29650 < new pts 29834, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29833 + pts count: 1 = new pts: 29834. update pts: 29669 < new pts 29834, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29833 + pts count: 1 = new pts: 29834. update pts: 29745 < new pts 29834, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29833 + pts count: 1 = new pts: 29834. update pts: 29796 < new pts 29834, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1343531 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1311070 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1343623 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29835 + pts count: 1 = new pts: 29836. update pts: 28115 < new pts 29836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29835 + pts count: 1 = new pts: 29836. update pts: 29714 < new pts 29836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29835 + pts count: 1 = new pts: 29836. update pts: 29820 < new pts 29836, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29835 + pts count: 1 = new pts: 29836. update pts: 28115 < new pts 29836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29835 + pts count: 1 = new pts: 29836. update pts: 29670 < new pts 29836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29835 + pts count: 1 = new pts: 29836. update pts: 29806 < new pts 29836, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29835 + pts count: 1 = new pts: 29836. update pts: 28115 < new pts 29836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29835 + pts count: 1 = new pts: 29836. update pts: 29675 < new pts 29836, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1359098 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29836 + pts count: 1 = new pts: 29837. update pts: 28115 < new pts 29837, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29836 + pts count: 1 = new pts: 29837. update pts: 29677 < new pts 29837, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29836 + pts count: 1 = new pts: 29837. update pts: 29799 < new pts 29837, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29839 + pts count: 1 = new pts: 29840. update pts: 28115 < new pts 29840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29839 + pts count: 1 = new pts: 29840. update pts: 29650 < new pts 29840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29839 + pts count: 1 = new pts: 29840. update pts: 29669 < new pts 29840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29839 + pts count: 1 = new pts: 29840. update pts: 29745 < new pts 29840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29839 + pts count: 1 = new pts: 29840. update pts: 29796 < new pts 29840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29839 + pts count: 1 = new pts: 29840. update pts: 29839 < new pts 29840, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1319641 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1311816 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1352098 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29843 + pts count: 1 = new pts: 29844. update pts: 28115 < new pts 29844, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29843 + pts count: 1 = new pts: 29844. update pts: 29675 < new pts 29844, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1351741 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29843, pts count: 1, new pts: 29844 < update pts: 29845, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29843 + pts count: 1 = new pts: 29844. update pts: 28115 < new pts 29844, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29843 + pts count: 1 = new pts: 29844. update pts: 29670 < new pts 29844, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29843 + pts count: 1 = new pts: 29844. update pts: 29806 < new pts 29844, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29845 + pts count: 1 = new pts: 29846. update pts: 28115 < new pts 29846, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29845 + pts count: 1 = new pts: 29846. update pts: 29714 < new pts 29846, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29845 + pts count: 1 = new pts: 29846. update pts: 29820 < new pts 29846, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1361541 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29844 + pts count: 1 = new pts: 29845. update pts: 28115 < new pts 29845, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29844 + pts count: 1 = new pts: 29845. update pts: 29677 < new pts 29845, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29844 + pts count: 1 = new pts: 29845. update pts: 29799 < new pts 29845, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29845 + pts count: 1 = new pts: 29846. update pts: 28115 < new pts 29846, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29845 + pts count: 1 = new pts: 29846. update pts: 29650 < new pts 29846, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29845 + pts count: 1 = new pts: 29846. update pts: 29669 < new pts 29846, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29845 + pts count: 1 = new pts: 29846. update pts: 29745 < new pts 29846, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29845 + pts count: 1 = new pts: 29846. update pts: 29796 < new pts 29846, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29845 + pts count: 1 = new pts: 29846. update pts: 29839 < new pts 29846, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1322565 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1352033 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1312496 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29847 + pts count: 1 = new pts: 29848. update pts: 28115 < new pts 29848, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29847 + pts count: 1 = new pts: 29848. update pts: 29675 < new pts 29848, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29847 + pts count: 1 = new pts: 29848. update pts: 28115 < new pts 29848, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29847 + pts count: 1 = new pts: 29848. update pts: 29670 < new pts 29848, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29847 + pts count: 1 = new pts: 29848. update pts: 29806 < new pts 29848, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1350137 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1368022 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29847 + pts count: 1 = new pts: 29848. update pts: 28115 < new pts 29848, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29847 + pts count: 1 = new pts: 29848. update pts: 29714 < new pts 29848, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29847 + pts count: 1 = new pts: 29848. update pts: 29820 < new pts 29848, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29849 + pts count: 1 = new pts: 29850. update pts: 28115 < new pts 29850, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29849 + pts count: 1 = new pts: 29850. update pts: 29677 < new pts 29850, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29849 + pts count: 1 = new pts: 29850. update pts: 29799 < new pts 29850, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29849 + pts count: 1 = new pts: 29850. update pts: 28115 < new pts 29850, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29849 + pts count: 1 = new pts: 29850. update pts: 29650 < new pts 29850, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29849 + pts count: 1 = new pts: 29850. update pts: 29669 < new pts 29850, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29849 + pts count: 1 = new pts: 29850. update pts: 29745 < new pts 29850, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29849 + pts count: 1 = new pts: 29850. update pts: 29796 < new pts 29850, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29849 + pts count: 1 = new pts: 29850. update pts: 29839 < new pts 29850, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29849, pts count: 1, new pts: 29850 < update pts: 29858, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1326663 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1354053 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Generating g_a... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Received updates. -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1326582 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29853 + pts count: 1 = new pts: 29854. update pts: 28115 < new pts 29854, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29853 + pts count: 1 = new pts: 29854. update pts: 29670 < new pts 29854, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29853 + pts count: 1 = new pts: 29854. update pts: 29806 < new pts 29854, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29853 + pts count: 1 = new pts: 29854. update pts: 28115 < new pts 29854, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29853 + pts count: 1 = new pts: 29854. update pts: 29675 < new pts 29854, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1374940 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29858 + pts count: 1 = new pts: 29859. update pts: 28115 < new pts 29859, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29858 + pts count: 1 = new pts: 29859. update pts: 29714 < new pts 29859, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29858 + pts count: 1 = new pts: 29859. update pts: 29820 < new pts 29859, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29858 + pts count: 1 = new pts: 29859. update pts: 28115 < new pts 29859, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29858 + pts count: 1 = new pts: 29859. update pts: 29650 < new pts 29859, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29858 + pts count: 1 = new pts: 29859. update pts: 29669 < new pts 29859, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29858 + pts count: 1 = new pts: 29859. update pts: 29745 < new pts 29859, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29858 + pts count: 1 = new pts: 29859. update pts: 29796 < new pts 29859, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29858 + pts count: 1 = new pts: 29859. update pts: 29839 < new pts 29859, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1370360 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29859, pts count: 1, new pts: 29860 < update pts: 29861, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1362196 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1328572 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29862 + pts count: 1 = new pts: 29863. update pts: 28115 < new pts 29863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29862 + pts count: 1 = new pts: 29863. update pts: 29677 < new pts 29863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29862 + pts count: 1 = new pts: 29863. update pts: 29799 < new pts 29863, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29859, pts count: 1, new pts: 29860 < update pts: 29863, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29859 + pts count: 1 = new pts: 29860. update pts: 28115 < new pts 29860, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29859 + pts count: 1 = new pts: 29860. update pts: 29675 < new pts 29860, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1327393 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1363892 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29863 + pts count: 1 = new pts: 29864. update pts: 28115 < new pts 29864, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29863 + pts count: 1 = new pts: 29864. update pts: 29670 < new pts 29864, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29863 + pts count: 1 = new pts: 29864. update pts: 29806 < new pts 29864, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1370001 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29862 + pts count: 1 = new pts: 29863. update pts: 28115 < new pts 29863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29862 + pts count: 1 = new pts: 29863. update pts: 29714 < new pts 29863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29862 + pts count: 1 = new pts: 29863. update pts: 29820 < new pts 29863, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29862 + pts count: 1 = new pts: 29863. update pts: 28115 < new pts 29863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29862 + pts count: 1 = new pts: 29863. update pts: 29650 < new pts 29863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29862 + pts count: 1 = new pts: 29863. update pts: 29669 < new pts 29863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29862 + pts count: 1 = new pts: 29863. update pts: 29745 < new pts 29863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29862 + pts count: 1 = new pts: 29863. update pts: 29796 < new pts 29863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29862 + pts count: 1 = new pts: 29863. update pts: 29839 < new pts 29863, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29863 + pts count: 1 = new pts: 29864. update pts: 28115 < new pts 29864, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29863 + pts count: 1 = new pts: 29864. update pts: 29677 < new pts 29864, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29863 + pts count: 1 = new pts: 29864. update pts: 29799 < new pts 29864, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1336259 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1367169 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29866, pts count: 1, new pts: 29867 < update pts: 29868, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29865 + pts count: 1 = new pts: 29866. update pts: 28115 < new pts 29866, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29865 + pts count: 1 = new pts: 29866. update pts: 29675 < new pts 29866, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1370606 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1334501 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -Wrote 1374897 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29868 + pts count: 1 = new pts: 29869. update pts: 28115 < new pts 29869, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29868 + pts count: 1 = new pts: 29869. update pts: 29670 < new pts 29869, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29868 + pts count: 1 = new pts: 29869. update pts: 29806 < new pts 29869, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29868 + pts count: 1 = new pts: 29869. update pts: 29866 < new pts 29869, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29866 + pts count: 1 = new pts: 29867. update pts: 28115 < new pts 29867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29866 + pts count: 1 = new pts: 29867. update pts: 29650 < new pts 29867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29866 + pts count: 1 = new pts: 29867. update pts: 29669 < new pts 29867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29866 + pts count: 1 = new pts: 29867. update pts: 29745 < new pts 29867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29866 + pts count: 1 = new pts: 29867. update pts: 29796 < new pts 29867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29866 + pts count: 1 = new pts: 29867. update pts: 29839 < new pts 29867, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29866 + pts count: 1 = new pts: 29867. update pts: 28115 < new pts 29867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29866 + pts count: 1 = new pts: 29867. update pts: 29714 < new pts 29867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29866 + pts count: 1 = new pts: 29867. update pts: 29820 < new pts 29867, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29866 + pts count: 1 = new pts: 29867. update pts: 28115 < new pts 29867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29866 + pts count: 1 = new pts: 29867. update pts: 29677 < new pts 29867, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29866 + pts count: 1 = new pts: 29867. update pts: 29799 < new pts 29867, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1338902 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1357535 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29868, pts count: 1, new pts: 29869 < update pts: 29871, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1336302 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29871 + pts count: 1 = new pts: 29872. update pts: 28115 < new pts 29872, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29871 + pts count: 1 = new pts: 29872. update pts: 29675 < new pts 29872, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1371455 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29869 + pts count: 1 = new pts: 29870. update pts: 28115 < new pts 29870, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29869 + pts count: 1 = new pts: 29870. update pts: 29670 < new pts 29870, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -AuthKeyHandler, danogentili: Generating g_a... -UpdateHandler, danogentili: Duplicate update. current pts: 29869 + pts count: 1 = new pts: 29870. update pts: 29806 < new pts 29870, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29869 + pts count: 1 = new pts: 29870. update pts: 29866 < new pts 29870, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1381195 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29870 + pts count: 1 = new pts: 29871. update pts: 28115 < new pts 29871, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29870 + pts count: 1 = new pts: 29871. update pts: 29714 < new pts 29871, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29870 + pts count: 1 = new pts: 29871. update pts: 29820 < new pts 29871, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29870 + pts count: 1 = new pts: 29871. update pts: 28115 < new pts 29871, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29870 + pts count: 1 = new pts: 29871. update pts: 29650 < new pts 29871, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29870 + pts count: 1 = new pts: 29871. update pts: 29669 < new pts 29871, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29870 + pts count: 1 = new pts: 29871. update pts: 29745 < new pts 29871, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29870 + pts count: 1 = new pts: 29871. update pts: 29796 < new pts 29871, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29870 + pts count: 1 = new pts: 29871. update pts: 29839 < new pts 29871, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29871 + pts count: 1 = new pts: 29872. update pts: 28115 < new pts 29872, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29871 + pts count: 1 = new pts: 29872. update pts: 29677 < new pts 29872, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29871 + pts count: 1 = new pts: 29872. update pts: 29799 < new pts 29872, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1339182 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29871, pts count: 1, new pts: 29872 < update pts: 29873, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1359793 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29876 + pts count: 1 = new pts: 29877. update pts: 28115 < new pts 29877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29876 + pts count: 1 = new pts: 29877. update pts: 29675 < new pts 29877, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1346026 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1386788 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29872 + pts count: 1 = new pts: 29873. update pts: 28115 < new pts 29873, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29872 + pts count: 1 = new pts: 29873. update pts: 29670 < new pts 29873, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29872 + pts count: 1 = new pts: 29873. update pts: 29806 < new pts 29873, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29872 + pts count: 1 = new pts: 29873. update pts: 29866 < new pts 29873, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -Wrote 1375334 bytes -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -AuthKeyHandler, danogentili: Calling 304401... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29876 + pts count: 1 = new pts: 29877. update pts: 28115 < new pts 29877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29876 + pts count: 1 = new pts: 29877. update pts: 29714 < new pts 29877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29876 + pts count: 1 = new pts: 29877. update pts: 29820 < new pts 29877, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29876 + pts count: 1 = new pts: 29877. update pts: 28115 < new pts 29877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29876 + pts count: 1 = new pts: 29877. update pts: 29677 < new pts 29877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29876 + pts count: 1 = new pts: 29877. update pts: 29799 < new pts 29877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29876 + pts count: 1 = new pts: 29877. update pts: 29876 < new pts 29877, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1365829 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29876, pts count: 1, new pts: 29877 < update pts: 29878, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1340270 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29879 + pts count: 1 = new pts: 29880. update pts: 28115 < new pts 29880, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29879 + pts count: 1 = new pts: 29880. update pts: 29650 < new pts 29880, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29879 + pts count: 1 = new pts: 29880. update pts: 29669 < new pts 29880, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29879 + pts count: 1 = new pts: 29880. update pts: 29745 < new pts 29880, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29879 + pts count: 1 = new pts: 29880. update pts: 29796 < new pts 29880, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29879 + pts count: 1 = new pts: 29880. update pts: 29839 < new pts 29880, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29877, pts count: 1, new pts: 29878 < update pts: 29881, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29877 + pts count: 1 = new pts: 29878. update pts: 28115 < new pts 29878, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29877 + pts count: 1 = new pts: 29878. update pts: 29670 < new pts 29878, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29877 + pts count: 1 = new pts: 29878. update pts: 29806 < new pts 29878, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29877 + pts count: 1 = new pts: 29878. update pts: 29866 < new pts 29878, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29877 + pts count: 1 = new pts: 29878. update pts: 29877 < new pts 29878, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29881 + pts count: 1 = new pts: 29882. update pts: 28115 < new pts 29882, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29881 + pts count: 1 = new pts: 29882. update pts: 29675 < new pts 29882, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1347367 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29881 + pts count: 1 = new pts: 29882. update pts: 28115 < new pts 29882, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29881 + pts count: 1 = new pts: 29882. update pts: 29714 < new pts 29882, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29881 + pts count: 1 = new pts: 29882. update pts: 29820 < new pts 29882, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1392419 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29881 + pts count: 1 = new pts: 29882. update pts: 28115 < new pts 29882, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29881 + pts count: 1 = new pts: 29882. update pts: 29677 < new pts 29882, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29881 + pts count: 1 = new pts: 29882. update pts: 29799 < new pts 29882, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29881 + pts count: 1 = new pts: 29882. update pts: 29876 < new pts 29882, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1381327 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1372551 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1352842 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -Wrote 1355848 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29884 + pts count: 1 = new pts: 29885. update pts: 28115 < new pts 29885, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29884 + pts count: 1 = new pts: 29885. update pts: 29670 < new pts 29885, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29884 + pts count: 1 = new pts: 29885. update pts: 29806 < new pts 29885, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29884 + pts count: 1 = new pts: 29885. update pts: 29866 < new pts 29885, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29884 + pts count: 1 = new pts: 29885. update pts: 29877 < new pts 29885, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29882 + pts count: 1 = new pts: 29883. update pts: 28115 < new pts 29883, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29882 + pts count: 1 = new pts: 29883. update pts: 29650 < new pts 29883, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29882 + pts count: 1 = new pts: 29883. update pts: 29669 < new pts 29883, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29882 + pts count: 1 = new pts: 29883. update pts: 29745 < new pts 29883, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29882 + pts count: 1 = new pts: 29883. update pts: 29796 < new pts 29883, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29882 + pts count: 1 = new pts: 29883. update pts: 29839 < new pts 29883, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1394420 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29884 + pts count: 1 = new pts: 29885. update pts: 28115 < new pts 29885, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29884 + pts count: 1 = new pts: 29885. update pts: 29675 < new pts 29885, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29884 + pts count: 1 = new pts: 29885, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29887 + pts count: 1 = new pts: 29888. update pts: 28115 < new pts 29888, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29887 + pts count: 1 = new pts: 29888. update pts: 29714 < new pts 29888, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29887 + pts count: 1 = new pts: 29888. update pts: 29820 < new pts 29888, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29887 + pts count: 1 = new pts: 29888, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29888 + pts count: 1 = new pts: 29889. update pts: 28115 < new pts 29889, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29888 + pts count: 1 = new pts: 29889. update pts: 29677 < new pts 29889, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29888 + pts count: 1 = new pts: 29889. update pts: 29799 < new pts 29889, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29888 + pts count: 1 = new pts: 29889. update pts: 29876 < new pts 29889, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1379290 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1391688 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -Wrote 1359862 bytes -AuthKeyHandler, danogentili: Calling 13316... -ResponseHandler, danogentili: Received updates. -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1350318 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29888 + pts count: 1 = new pts: 29889. update pts: 28115 < new pts 29889, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29888 + pts count: 1 = new pts: 29889. update pts: 29670 < new pts 29889, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29888 + pts count: 1 = new pts: 29889. update pts: 29806 < new pts 29889, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29888 + pts count: 1 = new pts: 29889. update pts: 29866 < new pts 29889, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29888 + pts count: 1 = new pts: 29889. update pts: 29877 < new pts 29889, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29889, pts count: 1, new pts: 29890 < update pts: 29892, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1391794 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29892 + pts count: 1 = new pts: 29893. update pts: 28115 < new pts 29893, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29892 + pts count: 1 = new pts: 29893. update pts: 29650 < new pts 29893, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29892 + pts count: 1 = new pts: 29893. update pts: 29669 < new pts 29893, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29892 + pts count: 1 = new pts: 29893. update pts: 29745 < new pts 29893, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29892 + pts count: 1 = new pts: 29893. update pts: 29796 < new pts 29893, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29892 + pts count: 1 = new pts: 29893. update pts: 29839 < new pts 29893, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29889 + pts count: 1 = new pts: 29890. update pts: 28115 < new pts 29890, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29889 + pts count: 1 = new pts: 29890. update pts: 29675 < new pts 29890, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29889 + pts count: 1 = new pts: 29890. update pts: 29885 < new pts 29890, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29889 + pts count: 1 = new pts: 29890. update pts: 28115 < new pts 29890, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29889 + pts count: 1 = new pts: 29890. update pts: 29714 < new pts 29890, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29889 + pts count: 1 = new pts: 29890. update pts: 29820 < new pts 29890, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29889 + pts count: 1 = new pts: 29890. update pts: 29888 < new pts 29890, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29891 + pts count: 1 = new pts: 29892. update pts: 28115 < new pts 29892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29891 + pts count: 1 = new pts: 29892. update pts: 29677 < new pts 29892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29891 + pts count: 1 = new pts: 29892. update pts: 29799 < new pts 29892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29891 + pts count: 1 = new pts: 29892. update pts: 29876 < new pts 29892, channel id: -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1380271 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1390992 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1370721 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29893 + pts count: 1 = new pts: 29894. update pts: 28115 < new pts 29894, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29893 + pts count: 1 = new pts: 29894. update pts: 29670 < new pts 29894, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29893 + pts count: 1 = new pts: 29894. update pts: 29806 < new pts 29894, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29893 + pts count: 1 = new pts: 29894. update pts: 29866 < new pts 29894, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29893 + pts count: 1 = new pts: 29894. update pts: 29877 < new pts 29894, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -Wrote 1358712 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1397458 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29894 + pts count: 1 = new pts: 29895. update pts: 28115 < new pts 29895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29894 + pts count: 1 = new pts: 29895. update pts: 29650 < new pts 29895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29894 + pts count: 1 = new pts: 29895. update pts: 29669 < new pts 29895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29894 + pts count: 1 = new pts: 29895. update pts: 29745 < new pts 29895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29894 + pts count: 1 = new pts: 29895. update pts: 29796 < new pts 29895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29894 + pts count: 1 = new pts: 29895. update pts: 29839 < new pts 29895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29895 + pts count: 1 = new pts: 29896. update pts: 28115 < new pts 29896, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29895 + pts count: 1 = new pts: 29896. update pts: 29675 < new pts 29896, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29895 + pts count: 1 = new pts: 29896. update pts: 29885 < new pts 29896, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29895 + pts count: 1 = new pts: 29896. update pts: 28115 < new pts 29896, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29895 + pts count: 1 = new pts: 29896. update pts: 29714 < new pts 29896, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29895 + pts count: 1 = new pts: 29896. update pts: 29820 < new pts 29896, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29895 + pts count: 1 = new pts: 29896. update pts: 29888 < new pts 29896, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29895 + pts count: 1 = new pts: 29896. update pts: 28115 < new pts 29896, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29895 + pts count: 1 = new pts: 29896. update pts: 29677 < new pts 29896, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29895 + pts count: 1 = new pts: 29896. update pts: 29799 < new pts 29896, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29895 + pts count: 1 = new pts: 29896. update pts: 29876 < new pts 29896, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1380536 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1391418 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29897 + pts count: 1 = new pts: 29898. update pts: 28115 < new pts 29898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29897 + pts count: 1 = new pts: 29898. update pts: 29670 < new pts 29898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29897 + pts count: 1 = new pts: 29898. update pts: 29806 < new pts 29898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29897 + pts count: 1 = new pts: 29898. update pts: 29866 < new pts 29898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -AuthKeyHandler, danogentili: VERBOSE -UpdateHandler, danogentili: Duplicate update. current pts: 29897 + pts count: 1 = new pts: 29898. update pts: 29877 < new pts 29898, channel id: -AuthKeyHandler, danogentili: Generating a... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29898 + pts count: 1 = new pts: 29899, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1375102 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1361512 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29899 + pts count: 1 = new pts: 29900, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29900 + pts count: 1 = new pts: 29901. update pts: 28115 < new pts 29901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29900 + pts count: 1 = new pts: 29901. update pts: 29650 < new pts 29901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29900 + pts count: 1 = new pts: 29901. update pts: 29669 < new pts 29901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29900 + pts count: 1 = new pts: 29901. update pts: 29745 < new pts 29901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29900 + pts count: 1 = new pts: 29901. update pts: 29796 < new pts 29901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29900 + pts count: 1 = new pts: 29901. update pts: 29839 < new pts 29901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1395679 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29898 + pts count: 1 = new pts: 29899. update pts: 28115 < new pts 29899, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29898 + pts count: 1 = new pts: 29899. update pts: 29675 < new pts 29899, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29898 + pts count: 1 = new pts: 29899. update pts: 29885 < new pts 29899, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29898 + pts count: 1 = new pts: 29899. update pts: 28115 < new pts 29899, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29898 + pts count: 1 = new pts: 29899. update pts: 29714 < new pts 29899, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29898 + pts count: 1 = new pts: 29899. update pts: 29820 < new pts 29899, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29898 + pts count: 1 = new pts: 29899. update pts: 29888 < new pts 29899, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29898 + pts count: 1 = new pts: 29899. update pts: 28115 < new pts 29899, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29898 + pts count: 1 = new pts: 29899. update pts: 29677 < new pts 29899, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29898 + pts count: 1 = new pts: 29899. update pts: 29799 < new pts 29899, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29898 + pts count: 1 = new pts: 29899. update pts: 29876 < new pts 29899, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1384689 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1394874 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Pts hole. current pts: 29902, pts count: 1, new pts: 29903 < update pts: 29905, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1370747 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29901 + pts count: 1 = new pts: 29902. update pts: 28115 < new pts 29902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29901 + pts count: 1 = new pts: 29902. update pts: 29670 < new pts 29902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29901 + pts count: 1 = new pts: 29902. update pts: 29806 < new pts 29902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29901 + pts count: 1 = new pts: 29902. update pts: 29866 < new pts 29902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29901 + pts count: 1 = new pts: 29902. update pts: 29877 < new pts 29902, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1405115 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29902, pts count: 1, new pts: 29903 < update pts: 29908, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1384925 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29908 + pts count: 1 = new pts: 29909. update pts: 28115 < new pts 29909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29908 + pts count: 1 = new pts: 29909. update pts: 29650 < new pts 29909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29908 + pts count: 1 = new pts: 29909. update pts: 29669 < new pts 29909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29908 + pts count: 1 = new pts: 29909. update pts: 29745 < new pts 29909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29908 + pts count: 1 = new pts: 29909. update pts: 29796 < new pts 29909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29908 + pts count: 1 = new pts: 29909. update pts: 29839 < new pts 29909, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29905 + pts count: 1 = new pts: 29906. update pts: 28115 < new pts 29906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29905 + pts count: 1 = new pts: 29906. update pts: 29714 < new pts 29906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29905 + pts count: 1 = new pts: 29906. update pts: 29820 < new pts 29906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29905 + pts count: 1 = new pts: 29906. update pts: 29888 < new pts 29906, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1389934 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29906 + pts count: 1 = new pts: 29907. update pts: 28115 < new pts 29907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29906 + pts count: 1 = new pts: 29907. update pts: 29677 < new pts 29907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29906 + pts count: 1 = new pts: 29907. update pts: 29799 < new pts 29907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29906 + pts count: 1 = new pts: 29907. update pts: 29876 < new pts 29907, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29905 + pts count: 1 = new pts: 29906. update pts: 28115 < new pts 29906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29905 + pts count: 1 = new pts: 29906. update pts: 29675 < new pts 29906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29905 + pts count: 1 = new pts: 29906. update pts: 29885 < new pts 29906, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1407061 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29909 + pts count: 1 = new pts: 29910. update pts: 28115 < new pts 29910, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -UpdateHandler, danogentili: Duplicate update. current pts: 29909 + pts count: 1 = new pts: 29910. update pts: 29670 < new pts 29910, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29909 + pts count: 1 = new pts: 29910. update pts: 29806 < new pts 29910, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29909 + pts count: 1 = new pts: 29910. update pts: 29866 < new pts 29910, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29909 + pts count: 1 = new pts: 29910. update pts: 29877 < new pts 29910, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29909 + pts count: 1 = new pts: 29910, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1378019 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1410439 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 28115 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 29650 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 29669 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 29745 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 29796 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 29839 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1387932 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 28115 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 29714 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 29820 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 29888 < new pts 29912, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1388156 bytes -AuthKeyHandler, danogentili: Calling 267654... -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29911 + pts count: 1 = new pts: 29912, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 28115 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 29677 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 29799 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 29876 < new pts 29912, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29912 + pts count: 1 = new pts: 29913. update pts: 28115 < new pts 29913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29912 + pts count: 1 = new pts: 29913. update pts: 29675 < new pts 29913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29912 + pts count: 1 = new pts: 29913. update pts: 29885 < new pts 29913, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 28115 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 29670 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 29806 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 29866 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 29877 < new pts 29912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29911 + pts count: 1 = new pts: 29912. update pts: 29910 < new pts 29912, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1408003 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1382896 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29914 + pts count: 1 = new pts: 29915. update pts: 28115 < new pts 29915, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29914 + pts count: 1 = new pts: 29915. update pts: 29650 < new pts 29915, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29914 + pts count: 1 = new pts: 29915. update pts: 29669 < new pts 29915, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29914 + pts count: 1 = new pts: 29915. update pts: 29745 < new pts 29915, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29914 + pts count: 1 = new pts: 29915. update pts: 29796 < new pts 29915, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29914 + pts count: 1 = new pts: 29915. update pts: 29839 < new pts 29915, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1416488 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1392160 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29915 + pts count: 1 = new pts: 29916, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1384165 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29915 + pts count: 1 = new pts: 29916. update pts: 28115 < new pts 29916, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29915 + pts count: 1 = new pts: 29916. update pts: 29714 < new pts 29916, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29915 + pts count: 1 = new pts: 29916. update pts: 29820 < new pts 29916, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29915 + pts count: 1 = new pts: 29916. update pts: 29888 < new pts 29916, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29916 + pts count: 1 = new pts: 29917, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29917 + pts count: 1 = new pts: 29918, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29918 + pts count: 1 = new pts: 29919, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29919 + pts count: 1 = new pts: 29920. update pts: 28115 < new pts 29920, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29919 + pts count: 1 = new pts: 29920. update pts: 29677 < new pts 29920, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29919 + pts count: 1 = new pts: 29920. update pts: 29799 < new pts 29920, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29919 + pts count: 1 = new pts: 29920. update pts: 29876 < new pts 29920, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29915 + pts count: 1 = new pts: 29916. update pts: 28115 < new pts 29916, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29915 + pts count: 1 = new pts: 29916. update pts: 29670 < new pts 29916, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29915 + pts count: 1 = new pts: 29916. update pts: 29806 < new pts 29916, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29915 + pts count: 1 = new pts: 29916. update pts: 29866 < new pts 29916, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29915 + pts count: 1 = new pts: 29916. update pts: 29877 < new pts 29916, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29915 + pts count: 1 = new pts: 29916. update pts: 29910 < new pts 29916, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1414068 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29915 + pts count: 1 = new pts: 29916. update pts: 28115 < new pts 29916, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29915 + pts count: 1 = new pts: 29916. update pts: 29675 < new pts 29916, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29915 + pts count: 1 = new pts: 29916. update pts: 29885 < new pts 29916, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29915, pts count: 1, new pts: 29916 < update pts: 29924, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1397652 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29921 + pts count: 1 = new pts: 29922. update pts: 28115 < new pts 29922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29921 + pts count: 1 = new pts: 29922. update pts: 29650 < new pts 29922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29921 + pts count: 1 = new pts: 29922. update pts: 29669 < new pts 29922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29921 + pts count: 1 = new pts: 29922. update pts: 29745 < new pts 29922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29921 + pts count: 1 = new pts: 29922. update pts: 29796 < new pts 29922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29921 + pts count: 1 = new pts: 29922. update pts: 29839 < new pts 29922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1416371 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 28115 < new pts 29925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 29714 < new pts 29925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 29820 < new pts 29925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 29888 < new pts 29925, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1391157 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1423350 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 28115 < new pts 29925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 29677 < new pts 29925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 29799 < new pts 29925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 29876 < new pts 29925, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1412990 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 28115 < new pts 29925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 29675 < new pts 29925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 29885 < new pts 29925, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 28115 < new pts 29925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 29670 < new pts 29925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 29806 < new pts 29925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 29866 < new pts 29925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 29877 < new pts 29925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29924 + pts count: 1 = new pts: 29925. update pts: 29910 < new pts 29925, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1393361 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29925 + pts count: 1 = new pts: 29926. update pts: 28115 < new pts 29926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29925 + pts count: 1 = new pts: 29926. update pts: 29650 < new pts 29926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29925 + pts count: 1 = new pts: 29926. update pts: 29669 < new pts 29926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29925 + pts count: 1 = new pts: 29926. update pts: 29745 < new pts 29926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29925 + pts count: 1 = new pts: 29926. update pts: 29796 < new pts 29926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29925 + pts count: 1 = new pts: 29926. update pts: 29839 < new pts 29926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29927 + pts count: 1 = new pts: 29928, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29928 + pts count: 1 = new pts: 29929. update pts: 28115 < new pts 29929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29928 + pts count: 1 = new pts: 29929. update pts: 29714 < new pts 29929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29928 + pts count: 1 = new pts: 29929. update pts: 29820 < new pts 29929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29928 + pts count: 1 = new pts: 29929. update pts: 29888 < new pts 29929, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1396506 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1424406 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29927, pts count: 1, new pts: 29928 < update pts: 29931, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1423802 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 28115 < new pts 29934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 29675 < new pts 29934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 29885 < new pts 29934, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1419951 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29928 + pts count: 1 = new pts: 29929. update pts: 28115 < new pts 29929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29928 + pts count: 1 = new pts: 29929. update pts: 29677 < new pts 29929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29928 + pts count: 1 = new pts: 29929. update pts: 29799 < new pts 29929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29928 + pts count: 1 = new pts: 29929. update pts: 29876 < new pts 29929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29928, pts count: 1, new pts: 29929 < update pts: 29932, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1398449 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29929 + pts count: 1 = new pts: 29930. update pts: 28115 < new pts 29930, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29929 + pts count: 1 = new pts: 29930. update pts: 29670 < new pts 29930, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29929 + pts count: 1 = new pts: 29930. update pts: 29806 < new pts 29930, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29929 + pts count: 1 = new pts: 29930. update pts: 29866 < new pts 29930, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29929 + pts count: 1 = new pts: 29930. update pts: 29877 < new pts 29930, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29929 + pts count: 1 = new pts: 29930. update pts: 29910 < new pts 29930, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29932 + pts count: 1 = new pts: 29933. update pts: 28115 < new pts 29933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29932 + pts count: 1 = new pts: 29933. update pts: 29650 < new pts 29933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29932 + pts count: 1 = new pts: 29933. update pts: 29669 < new pts 29933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29932 + pts count: 1 = new pts: 29933. update pts: 29745 < new pts 29933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29932 + pts count: 1 = new pts: 29933. update pts: 29796 < new pts 29933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29932 + pts count: 1 = new pts: 29933. update pts: 29839 < new pts 29933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 28115 < new pts 29934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 29714 < new pts 29934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 29820 < new pts 29934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 29888 < new pts 29934, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1402695 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -ResponseHandler, danogentili: Received updates. -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29933, pts count: 1, new pts: 29934 < update pts: 29937, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1430483 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1423881 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -Wrote 1412837 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29937 + pts count: 1 = new pts: 29938. update pts: 28115 < new pts 29938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29937 + pts count: 1 = new pts: 29938. update pts: 29675 < new pts 29938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29937 + pts count: 1 = new pts: 29938. update pts: 29885 < new pts 29938, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 28115 < new pts 29934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 29670 < new pts 29934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 29806 < new pts 29934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 29866 < new pts 29934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 29877 < new pts 29934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 29910 < new pts 29934, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1399045 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 28115 < new pts 29934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 29677 < new pts 29934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 29799 < new pts 29934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 29876 < new pts 29934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29933 + pts count: 1 = new pts: 29934. update pts: 29932 < new pts 29934, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29934 + pts count: 1 = new pts: 29935. update pts: 28115 < new pts 29935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29934 + pts count: 1 = new pts: 29935. update pts: 29650 < new pts 29935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29934 + pts count: 1 = new pts: 29935. update pts: 29669 < new pts 29935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29934 + pts count: 1 = new pts: 29935. update pts: 29745 < new pts 29935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29934 + pts count: 1 = new pts: 29935. update pts: 29796 < new pts 29935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29934 + pts count: 1 = new pts: 29935. update pts: 29839 < new pts 29935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1398841 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29937 + pts count: 1 = new pts: 29938. update pts: 28115 < new pts 29938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29937 + pts count: 1 = new pts: 29938. update pts: 29714 < new pts 29938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29937 + pts count: 1 = new pts: 29938. update pts: 29820 < new pts 29938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29937 + pts count: 1 = new pts: 29938. update pts: 29888 < new pts 29938, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29937, pts count: 1, new pts: 29938 < update pts: 29939, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1436527 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1417534 bytes -AuthKeyHandler, danogentili: Calling 304401... -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29941 + pts count: 1 = new pts: 29942. update pts: 28115 < new pts 29942, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29941 + pts count: 1 = new pts: 29942. update pts: 29675 < new pts 29942, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29941 + pts count: 1 = new pts: 29942. update pts: 29885 < new pts 29942, channel id: -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1429652 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1401168 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29938 + pts count: 1 = new pts: 29939. update pts: 28115 < new pts 29939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29938 + pts count: 1 = new pts: 29939. update pts: 29670 < new pts 29939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29938 + pts count: 1 = new pts: 29939. update pts: 29806 < new pts 29939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29938 + pts count: 1 = new pts: 29939. update pts: 29866 < new pts 29939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29938 + pts count: 1 = new pts: 29939. update pts: 29877 < new pts 29939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29938 + pts count: 1 = new pts: 29939. update pts: 29910 < new pts 29939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29938, pts count: 1, new pts: 29939 < update pts: 29941, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29938 + pts count: 1 = new pts: 29939. update pts: 28115 < new pts 29939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29938 + pts count: 1 = new pts: 29939. update pts: 29650 < new pts 29939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29938 + pts count: 1 = new pts: 29939. update pts: 29669 < new pts 29939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29938 + pts count: 1 = new pts: 29939. update pts: 29745 < new pts 29939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29938 + pts count: 1 = new pts: 29939. update pts: 29796 < new pts 29939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29938 + pts count: 1 = new pts: 29939. update pts: 29839 < new pts 29939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29939 + pts count: 1 = new pts: 29940. update pts: 28115 < new pts 29940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29939 + pts count: 1 = new pts: 29940. update pts: 29677 < new pts 29940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29939 + pts count: 1 = new pts: 29940. update pts: 29799 < new pts 29940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29939 + pts count: 1 = new pts: 29940. update pts: 29876 < new pts 29940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29939 + pts count: 1 = new pts: 29940. update pts: 29932 < new pts 29940, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29940 + pts count: 1 = new pts: 29941. update pts: 28115 < new pts 29941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29940 + pts count: 1 = new pts: 29941. update pts: 29714 < new pts 29941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29940 + pts count: 1 = new pts: 29941. update pts: 29820 < new pts 29941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29940 + pts count: 1 = new pts: 29941. update pts: 29888 < new pts 29941, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1404851 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29941 + pts count: 1 = new pts: 29942. update pts: 28115 < new pts 29942, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29941 + pts count: 1 = new pts: 29942. update pts: 29675 < new pts 29942, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29941 + pts count: 1 = new pts: 29942. update pts: 29885 < new pts 29942, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1423251 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1434221 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1440955 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -Wrote 1400915 bytes -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29944, pts count: 1, new pts: 29945 < update pts: 29948, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29949 + pts count: 1 = new pts: 29950. update pts: 28115 < new pts 29950, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29949 + pts count: 1 = new pts: 29950. update pts: 29650 < new pts 29950, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29949 + pts count: 1 = new pts: 29950. update pts: 29669 < new pts 29950, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29949 + pts count: 1 = new pts: 29950. update pts: 29745 < new pts 29950, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29949 + pts count: 1 = new pts: 29950. update pts: 29796 < new pts 29950, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29949 + pts count: 1 = new pts: 29950. update pts: 29839 < new pts 29950, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29945 + pts count: 1 = new pts: 29946. update pts: 28115 < new pts 29946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29945 + pts count: 1 = new pts: 29946. update pts: 29677 < new pts 29946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29945 + pts count: 1 = new pts: 29946. update pts: 29799 < new pts 29946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29945 + pts count: 1 = new pts: 29946. update pts: 29876 < new pts 29946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29945 + pts count: 1 = new pts: 29946. update pts: 29932 < new pts 29946, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1409778 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29945 + pts count: 1 = new pts: 29946. update pts: 28115 < new pts 29946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29945 + pts count: 1 = new pts: 29946. update pts: 29670 < new pts 29946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29945 + pts count: 1 = new pts: 29946. update pts: 29806 < new pts 29946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29945 + pts count: 1 = new pts: 29946. update pts: 29866 < new pts 29946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29945 + pts count: 1 = new pts: 29946. update pts: 29877 < new pts 29946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29945 + pts count: 1 = new pts: 29946. update pts: 29910 < new pts 29946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29945 + pts count: 1 = new pts: 29946. update pts: 29941 < new pts 29946, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29945 + pts count: 1 = new pts: 29946. update pts: 28115 < new pts 29946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29945 + pts count: 1 = new pts: 29946. update pts: 29714 < new pts 29946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29945 + pts count: 1 = new pts: 29946. update pts: 29820 < new pts 29946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29945 + pts count: 1 = new pts: 29946. update pts: 29888 < new pts 29946, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29947 + pts count: 1 = new pts: 29948. update pts: 28115 < new pts 29948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29947 + pts count: 1 = new pts: 29948. update pts: 29675 < new pts 29948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29947 + pts count: 1 = new pts: 29948. update pts: 29885 < new pts 29948, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1432796 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1450190 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1407308 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29951, pts count: 1, new pts: 29952 < update pts: 29953, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1439790 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29951 + pts count: 1 = new pts: 29952. update pts: 28115 < new pts 29952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29951 + pts count: 1 = new pts: 29952. update pts: 29650 < new pts 29952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29951 + pts count: 1 = new pts: 29952. update pts: 29669 < new pts 29952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29951 + pts count: 1 = new pts: 29952. update pts: 29745 < new pts 29952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29951 + pts count: 1 = new pts: 29952. update pts: 29796 < new pts 29952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29951 + pts count: 1 = new pts: 29952. update pts: 29839 < new pts 29952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1412957 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29954 + pts count: 1 = new pts: 29955. update pts: 28115 < new pts 29955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29954 + pts count: 1 = new pts: 29955. update pts: 29670 < new pts 29955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29954 + pts count: 1 = new pts: 29955. update pts: 29806 < new pts 29955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29954 + pts count: 1 = new pts: 29955. update pts: 29866 < new pts 29955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29954 + pts count: 1 = new pts: 29955. update pts: 29877 < new pts 29955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29951 + pts count: 1 = new pts: 29952. update pts: 28115 < new pts 29952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29954 + pts count: 1 = new pts: 29955. update pts: 29910 < new pts 29955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29954 + pts count: 1 = new pts: 29955. update pts: 29941 < new pts 29955, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29951 + pts count: 1 = new pts: 29952. update pts: 29714 < new pts 29952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29951 + pts count: 1 = new pts: 29952. update pts: 29820 < new pts 29952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29951 + pts count: 1 = new pts: 29952. update pts: 29888 < new pts 29952, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29951 + pts count: 1 = new pts: 29952. update pts: 28115 < new pts 29952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29951 + pts count: 1 = new pts: 29952. update pts: 29677 < new pts 29952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29951 + pts count: 1 = new pts: 29952. update pts: 29799 < new pts 29952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29951 + pts count: 1 = new pts: 29952. update pts: 29876 < new pts 29952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29951 + pts count: 1 = new pts: 29952. update pts: 29932 < new pts 29952, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29951, pts count: 1, new pts: 29952 < update pts: 29956, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 28115 < new pts 29957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 29675 < new pts 29957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 29885 < new pts 29957, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1438247 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1455061 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1415153 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29956, pts count: 1, new pts: 29957 < update pts: 29960, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -Wrote 1446392 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShortMessage. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 28115 < new pts 29957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 29650 < new pts 29957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 29669 < new pts 29957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 29745 < new pts 29957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 29796 < new pts 29957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 29839 < new pts 29957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 28115 < new pts 29957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 29714 < new pts 29957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 29820 < new pts 29957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 29888 < new pts 29957, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1425929 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29961 + pts count: 1 = new pts: 29962. update pts: 28115 < new pts 29962, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29961 + pts count: 1 = new pts: 29962. update pts: 29670 < new pts 29962, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29961 + pts count: 1 = new pts: 29962. update pts: 29806 < new pts 29962, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29961 + pts count: 1 = new pts: 29962. update pts: 29866 < new pts 29962, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29961 + pts count: 1 = new pts: 29962. update pts: 29877 < new pts 29962, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29961 + pts count: 1 = new pts: 29962. update pts: 29910 < new pts 29962, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29961 + pts count: 1 = new pts: 29962. update pts: 29941 < new pts 29962, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 28115 < new pts 29957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 29677 < new pts 29957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 29799 < new pts 29957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 29876 < new pts 29957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29956 + pts count: 1 = new pts: 29957. update pts: 29932 < new pts 29957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29956 + pts count: 1 = new pts: 29957, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29959 + pts count: 1 = new pts: 29960. update pts: 28115 < new pts 29960, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29959 + pts count: 1 = new pts: 29960. update pts: 29675 < new pts 29960, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29959 + pts count: 1 = new pts: 29960. update pts: 29885 < new pts 29960, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29959 + pts count: 1 = new pts: 29960. update pts: 29959 < new pts 29960, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1442386 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1419622 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29962, pts count: 1, new pts: 29963 < update pts: 29965, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1457483 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1458732 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29965 + pts count: 1 = new pts: 29966. update pts: 28115 < new pts 29966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29965 + pts count: 1 = new pts: 29966. update pts: 29650 < new pts 29966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29965 + pts count: 1 = new pts: 29966. update pts: 29669 < new pts 29966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29965 + pts count: 1 = new pts: 29966. update pts: 29745 < new pts 29966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29965 + pts count: 1 = new pts: 29966. update pts: 29796 < new pts 29966, channel id: -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29965 + pts count: 1 = new pts: 29966. update pts: 29839 < new pts 29966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29963, pts count: 1, new pts: 29964 < update pts: 29966, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 28115 < new pts 29964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 29670 < new pts 29964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 29806 < new pts 29964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 29866 < new pts 29964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 29877 < new pts 29964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 29910 < new pts 29964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 29941 < new pts 29964, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1429615 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 28115 < new pts 29964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 29677 < new pts 29964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 29799 < new pts 29964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 29876 < new pts 29964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 29932 < new pts 29964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 29957 < new pts 29964, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 28115 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29714 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29820 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29888 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29963 < new pts 29968, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 28115 < new pts 29964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 29675 < new pts 29964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 29885 < new pts 29964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29963 + pts count: 1 = new pts: 29964. update pts: 29959 < new pts 29964, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29963 + pts count: 1 = new pts: 29964, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1446631 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1464936 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 28115 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29650 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29669 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29745 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29796 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29839 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -Wrote 1461148 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1414410 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 28115 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29670 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29806 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29866 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29877 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29910 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29941 < new pts 29968, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1434361 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 28115 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29677 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29799 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29876 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29932 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29957 < new pts 29968, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 28115 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29714 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29820 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29888 < new pts 29968, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29967 + pts count: 1 = new pts: 29968. update pts: 29963 < new pts 29968, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29968 + pts count: 1 = new pts: 29969. update pts: 28115 < new pts 29969, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29968 + pts count: 1 = new pts: 29969. update pts: 29675 < new pts 29969, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29968 + pts count: 1 = new pts: 29969. update pts: 29885 < new pts 29969, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29968 + pts count: 1 = new pts: 29969. update pts: 29959 < new pts 29969, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29968 + pts count: 1 = new pts: 29969. update pts: 29964 < new pts 29969, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29968 + pts count: 1 = new pts: 29969, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1448583 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1461691 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1421938 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1467977 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29970, pts count: 1, new pts: 29971 < update pts: 29974, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29974 + pts count: 1 = new pts: 29975. update pts: 28115 < new pts 29975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29974 + pts count: 1 = new pts: 29975. update pts: 29650 < new pts 29975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29974 + pts count: 1 = new pts: 29975. update pts: 29669 < new pts 29975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29974 + pts count: 1 = new pts: 29975. update pts: 29745 < new pts 29975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29974 + pts count: 1 = new pts: 29975. update pts: 29796 < new pts 29975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29974 + pts count: 1 = new pts: 29975. update pts: 29839 < new pts 29975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 28115 < new pts 29972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 29677 < new pts 29972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 29799 < new pts 29972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 29876 < new pts 29972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 29932 < new pts 29972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 29957 < new pts 29972, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1436666 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 28115 < new pts 29972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 29714 < new pts 29972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 29820 < new pts 29972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 29888 < new pts 29972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 29963 < new pts 29972, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 28115 < new pts 29972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 29670 < new pts 29972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 29806 < new pts 29972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 29866 < new pts 29972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 29877 < new pts 29972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 29910 < new pts 29972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29971 + pts count: 1 = new pts: 29972. update pts: 29941 < new pts 29972, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29973 + pts count: 1 = new pts: 29974. update pts: 28115 < new pts 29974, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29973 + pts count: 1 = new pts: 29974. update pts: 29675 < new pts 29974, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29973 + pts count: 1 = new pts: 29974. update pts: 29885 < new pts 29974, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29973 + pts count: 1 = new pts: 29974. update pts: 29959 < new pts 29974, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29973 + pts count: 1 = new pts: 29974. update pts: 29964 < new pts 29974, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29973 + pts count: 1 = new pts: 29974. update pts: 29969 < new pts 29974, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1451255 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1471995 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1422279 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1474504 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29975 + pts count: 1 = new pts: 29976. update pts: 28115 < new pts 29976, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29975 + pts count: 1 = new pts: 29976. update pts: 29650 < new pts 29976, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29975 + pts count: 1 = new pts: 29976. update pts: 29669 < new pts 29976, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29975 + pts count: 1 = new pts: 29976. update pts: 29745 < new pts 29976, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29975 + pts count: 1 = new pts: 29976. update pts: 29796 < new pts 29976, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29975 + pts count: 1 = new pts: 29976. update pts: 29839 < new pts 29976, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29975 + pts count: 1 = new pts: 29976. update pts: 28115 < new pts 29976, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29975 + pts count: 1 = new pts: 29976. update pts: 29677 < new pts 29976, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29975 + pts count: 1 = new pts: 29976. update pts: 29799 < new pts 29976, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29975 + pts count: 1 = new pts: 29976. update pts: 29876 < new pts 29976, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29975 + pts count: 1 = new pts: 29976. update pts: 29932 < new pts 29976, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29975 + pts count: 1 = new pts: 29976. update pts: 29957 < new pts 29976, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1437364 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29976, pts count: 1, new pts: 29977 < update pts: 29980, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29977 + pts count: 1 = new pts: 29978. update pts: 28115 < new pts 29978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29977 + pts count: 1 = new pts: 29978. update pts: 29670 < new pts 29978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29977 + pts count: 1 = new pts: 29978. update pts: 29806 < new pts 29978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29977 + pts count: 1 = new pts: 29978. update pts: 29866 < new pts 29978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29977 + pts count: 1 = new pts: 29978. update pts: 29877 < new pts 29978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29977 + pts count: 1 = new pts: 29978. update pts: 29910 < new pts 29978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29977 + pts count: 1 = new pts: 29978. update pts: 29941 < new pts 29978, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29980 + pts count: 1 = new pts: 29981. update pts: 28115 < new pts 29981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29980 + pts count: 1 = new pts: 29981. update pts: 29714 < new pts 29981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29980 + pts count: 1 = new pts: 29981. update pts: 29820 < new pts 29981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29980 + pts count: 1 = new pts: 29981. update pts: 29888 < new pts 29981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29980 + pts count: 1 = new pts: 29981. update pts: 29963 < new pts 29981, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29977 + pts count: 1 = new pts: 29978. update pts: 28115 < new pts 29978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29977 + pts count: 1 = new pts: 29978. update pts: 29675 < new pts 29978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29977 + pts count: 1 = new pts: 29978. update pts: 29885 < new pts 29978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29977 + pts count: 1 = new pts: 29978. update pts: 29959 < new pts 29978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29977 + pts count: 1 = new pts: 29978. update pts: 29964 < new pts 29978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29977 + pts count: 1 = new pts: 29978. update pts: 29969 < new pts 29978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 29977 + pts count: 1 = new pts: 29978, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1479214 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1458948 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1476040 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29981, pts count: 1, new pts: 29982 < update pts: 29983, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -Wrote 1424137 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1441204 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 28115 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29650 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29669 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29745 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29796 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29839 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 28115 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29677 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29799 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29876 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29932 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29957 < new pts 29982, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29986 + pts count: 1 = new pts: 29987. update pts: 28115 < new pts 29987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29986 + pts count: 1 = new pts: 29987. update pts: 29670 < new pts 29987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29986 + pts count: 1 = new pts: 29987. update pts: 29806 < new pts 29987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29986 + pts count: 1 = new pts: 29987. update pts: 29866 < new pts 29987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29986 + pts count: 1 = new pts: 29987. update pts: 29877 < new pts 29987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29986 + pts count: 1 = new pts: 29987. update pts: 29910 < new pts 29987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29986 + pts count: 1 = new pts: 29987. update pts: 29941 < new pts 29987, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 28115 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29714 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29820 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29888 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29963 < new pts 29982, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 28115 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29675 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29885 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29959 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29964 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29969 < new pts 29982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29981 + pts count: 1 = new pts: 29982. update pts: 29978 < new pts 29982, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1464180 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1484066 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1431318 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 28115 < new pts 29988, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29650 < new pts 29988, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29669 < new pts 29988, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29745 < new pts 29988, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29796 < new pts 29988, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29839 < new pts 29988, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29987, pts count: 1, new pts: 29988 < update pts: 29989, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1466597 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1451834 bytes -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29987, pts count: 1, new pts: 29988 < update pts: 29990, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 29987, pts count: 1, new pts: 29988 < update pts: 29992, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29992 + pts count: 1 = new pts: 29993. update pts: 28115 < new pts 29993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29992 + pts count: 1 = new pts: 29993. update pts: 29677 < new pts 29993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29992 + pts count: 1 = new pts: 29993. update pts: 29799 < new pts 29993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29992 + pts count: 1 = new pts: 29993. update pts: 29876 < new pts 29993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29992 + pts count: 1 = new pts: 29993. update pts: 29932 < new pts 29993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29992 + pts count: 1 = new pts: 29993. update pts: 29957 < new pts 29993, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 28115 < new pts 29988, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29670 < new pts 29988, channel id: -UpdateHandler, danogentili: Saving an update of type updateMessageID... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29806 < new pts 29988, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29866 < new pts 29988, channel id: -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29877 < new pts 29988, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29910 < new pts 29988, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29941 < new pts 29988, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 28115 < new pts 29988, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29675 < new pts 29988, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29885 < new pts 29988, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29959 < new pts 29988, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29964 < new pts 29988, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29969 < new pts 29988, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29987 + pts count: 1 = new pts: 29988. update pts: 29978 < new pts 29988, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29992 + pts count: 1 = new pts: 29993. update pts: 28115 < new pts 29993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29992 + pts count: 1 = new pts: 29993. update pts: 29714 < new pts 29993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29992 + pts count: 1 = new pts: 29993. update pts: 29820 < new pts 29993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29992 + pts count: 1 = new pts: 29993. update pts: 29888 < new pts 29993, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29992 + pts count: 1 = new pts: 29993. update pts: 29963 < new pts 29993, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1465167 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 28115 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29650 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29669 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29745 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29796 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29839 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1487134 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1472151 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29993, pts count: 1, new pts: 29994 < update pts: 29995, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1453662 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1444607 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29997 + pts count: 1 = new pts: 29998. update pts: 28115 < new pts 29998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29997 + pts count: 1 = new pts: 29998. update pts: 29677 < new pts 29998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29997 + pts count: 1 = new pts: 29998. update pts: 29799 < new pts 29998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29997 + pts count: 1 = new pts: 29998. update pts: 29876 < new pts 29998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29997 + pts count: 1 = new pts: 29998. update pts: 29932 < new pts 29998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29997 + pts count: 1 = new pts: 29998. update pts: 29957 < new pts 29998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29997 + pts count: 1 = new pts: 29998. update pts: 29994 < new pts 29998, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 28115 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29714 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29820 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29888 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29963 < new pts 29994, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 28115 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29670 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29806 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29866 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29877 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29910 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29941 < new pts 29994, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 28115 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29675 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29885 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29959 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29964 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29969 < new pts 29994, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29993 + pts count: 1 = new pts: 29994. update pts: 29978 < new pts 29994, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1470810 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1452096 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1487876 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29997 + pts count: 1 = new pts: 29998. update pts: 28115 < new pts 29998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29997 + pts count: 1 = new pts: 29998. update pts: 29650 < new pts 29998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29997 + pts count: 1 = new pts: 29998. update pts: 29669 < new pts 29998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29997 + pts count: 1 = new pts: 29998. update pts: 29745 < new pts 29998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29997 + pts count: 1 = new pts: 29998. update pts: 29796 < new pts 29998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29997 + pts count: 1 = new pts: 29998. update pts: 29839 < new pts 29998, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1477336 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1460286 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29998, pts count: 1, new pts: 29999 < update pts: 30000, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 29998, pts count: 1, new pts: 29999 < update pts: 30002, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29998 + pts count: 1 = new pts: 29999. update pts: 28115 < new pts 29999, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29998 + pts count: 1 = new pts: 29999. update pts: 29677 < new pts 29999, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29998 + pts count: 1 = new pts: 29999. update pts: 29799 < new pts 29999, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29998 + pts count: 1 = new pts: 29999. update pts: 29876 < new pts 29999, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29998 + pts count: 1 = new pts: 29999. update pts: 29932 < new pts 29999, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29998 + pts count: 1 = new pts: 29999. update pts: 29957 < new pts 29999, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29998 + pts count: 1 = new pts: 29999. update pts: 29994 < new pts 29999, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30002 + pts count: 1 = new pts: 30003. update pts: 28115 < new pts 30003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30002 + pts count: 1 = new pts: 30003. update pts: 29670 < new pts 30003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30002 + pts count: 1 = new pts: 30003. update pts: 29806 < new pts 30003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30002 + pts count: 1 = new pts: 30003. update pts: 29866 < new pts 30003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30002 + pts count: 1 = new pts: 30003. update pts: 29877 < new pts 30003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30002 + pts count: 1 = new pts: 30003. update pts: 29910 < new pts 30003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30002 + pts count: 1 = new pts: 30003. update pts: 29941 < new pts 30003, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29998 + pts count: 1 = new pts: 29999. update pts: 28115 < new pts 29999, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29998 + pts count: 1 = new pts: 29999. update pts: 29675 < new pts 29999, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29998 + pts count: 1 = new pts: 29999. update pts: 29885 < new pts 29999, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29998 + pts count: 1 = new pts: 29999. update pts: 29959 < new pts 29999, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29998 + pts count: 1 = new pts: 29999. update pts: 29964 < new pts 29999, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29998 + pts count: 1 = new pts: 29999. update pts: 29969 < new pts 29999, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 29998 + pts count: 1 = new pts: 29999. update pts: 29978 < new pts 29999, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 28115 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29714 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29820 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29888 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29963 < new pts 30004, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1482319 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1493516 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1468472 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1483543 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 28115 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29650 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29669 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29745 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29796 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29839 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1457702 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 28115 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29677 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29799 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29876 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29932 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29957 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29994 < new pts 30004, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 28115 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29675 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29885 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29959 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29964 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29969 < new pts 30004, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30003 + pts count: 1 = new pts: 30004. update pts: 29978 < new pts 30004, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30004 + pts count: 1 = new pts: 30005. update pts: 28115 < new pts 30005, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30004 + pts count: 1 = new pts: 30005. update pts: 29670 < new pts 30005, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30004 + pts count: 1 = new pts: 30005. update pts: 29806 < new pts 30005, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30004 + pts count: 1 = new pts: 30005. update pts: 29866 < new pts 30005, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30004 + pts count: 1 = new pts: 30005. update pts: 29877 < new pts 30005, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30004 + pts count: 1 = new pts: 30005. update pts: 29910 < new pts 30005, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30004 + pts count: 1 = new pts: 30005. update pts: 29941 < new pts 30005, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30005 + pts count: 1 = new pts: 30006. update pts: 28115 < new pts 30006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30005 + pts count: 1 = new pts: 30006. update pts: 29714 < new pts 30006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30005 + pts count: 1 = new pts: 30006. update pts: 29820 < new pts 30006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30005 + pts count: 1 = new pts: 30006. update pts: 29888 < new pts 30006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30005 + pts count: 1 = new pts: 30006. update pts: 29963 < new pts 30006, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1483371 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30006, pts count: 1, new pts: 30007 < update pts: 30008, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1499802 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1474529 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1491298 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30010 + pts count: 1 = new pts: 30011. update pts: 28115 < new pts 30011, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30010 + pts count: 1 = new pts: 30011. update pts: 29650 < new pts 30011, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30010 + pts count: 1 = new pts: 30011. update pts: 29669 < new pts 30011, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30010 + pts count: 1 = new pts: 30011. update pts: 29745 < new pts 30011, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30010 + pts count: 1 = new pts: 30011. update pts: 29796 < new pts 30011, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30010 + pts count: 1 = new pts: 30011. update pts: 29839 < new pts 30011, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30007, pts count: 1, new pts: 30008 < update pts: 30011, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1465191 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30007 + pts count: 1 = new pts: 30008. update pts: 28115 < new pts 30008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30007 + pts count: 1 = new pts: 30008. update pts: 29675 < new pts 30008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30007 + pts count: 1 = new pts: 30008. update pts: 29885 < new pts 30008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30007 + pts count: 1 = new pts: 30008. update pts: 29959 < new pts 30008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30007 + pts count: 1 = new pts: 30008. update pts: 29964 < new pts 30008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30007 + pts count: 1 = new pts: 30008. update pts: 29969 < new pts 30008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30007 + pts count: 1 = new pts: 30008. update pts: 29978 < new pts 30008, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30009 + pts count: 1 = new pts: 30010. update pts: 28115 < new pts 30010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30009 + pts count: 1 = new pts: 30010. update pts: 29670 < new pts 30010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30009 + pts count: 1 = new pts: 30010. update pts: 29806 < new pts 30010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30009 + pts count: 1 = new pts: 30010. update pts: 29866 < new pts 30010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30009 + pts count: 1 = new pts: 30010. update pts: 29877 < new pts 30010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30009 + pts count: 1 = new pts: 30010. update pts: 29910 < new pts 30010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30009 + pts count: 1 = new pts: 30010. update pts: 29941 < new pts 30010, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30012 + pts count: 1 = new pts: 30013. update pts: 28115 < new pts 30013, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30012 + pts count: 1 = new pts: 30013. update pts: 29677 < new pts 30013, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30012 + pts count: 1 = new pts: 30013. update pts: 29799 < new pts 30013, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30012 + pts count: 1 = new pts: 30013. update pts: 29876 < new pts 30013, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30012 + pts count: 1 = new pts: 30013. update pts: 29932 < new pts 30013, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30012 + pts count: 1 = new pts: 30013. update pts: 29957 < new pts 30013, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30012 + pts count: 1 = new pts: 30013. update pts: 29994 < new pts 30013, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30010 + pts count: 1 = new pts: 30011. update pts: 28115 < new pts 30011, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30010 + pts count: 1 = new pts: 30011. update pts: 29714 < new pts 30011, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30010 + pts count: 1 = new pts: 30011. update pts: 29820 < new pts 30011, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30010 + pts count: 1 = new pts: 30011. update pts: 29888 < new pts 30011, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30010 + pts count: 1 = new pts: 30011. update pts: 29963 < new pts 30011, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1486249 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30012 + pts count: 1 = new pts: 30013. update pts: 28115 < new pts 30013, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30012 + pts count: 1 = new pts: 30013. update pts: 29650 < new pts 30013, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30012 + pts count: 1 = new pts: 30013. update pts: 29669 < new pts 30013, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30012 + pts count: 1 = new pts: 30013. update pts: 29745 < new pts 30013, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30012 + pts count: 1 = new pts: 30013. update pts: 29796 < new pts 30013, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30012 + pts count: 1 = new pts: 30013. update pts: 29839 < new pts 30013, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1480886 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1496993 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 28115 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29675 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29885 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29959 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29964 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29969 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29978 < new pts 30014, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1498512 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1464789 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 28115 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29670 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29806 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29866 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29877 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29910 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29941 < new pts 30014, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1487871 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 28115 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29677 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29799 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29876 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29932 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29957 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29994 < new pts 30014, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 28115 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29714 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29820 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29888 < new pts 30014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30013 + pts count: 1 = new pts: 30014. update pts: 29963 < new pts 30014, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30015 + pts count: 1 = new pts: 30016. update pts: 28115 < new pts 30016, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30015 + pts count: 1 = new pts: 30016. update pts: 29650 < new pts 30016, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30015 + pts count: 1 = new pts: 30016. update pts: 29669 < new pts 30016, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30015 + pts count: 1 = new pts: 30016. update pts: 29745 < new pts 30016, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30015 + pts count: 1 = new pts: 30016. update pts: 29796 < new pts 30016, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30015 + pts count: 1 = new pts: 30016. update pts: 29839 < new pts 30016, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1476942 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShortMessage. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1487287 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30015 + pts count: 1 = new pts: 30016. update pts: 28115 < new pts 30016, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30015 + pts count: 1 = new pts: 30016. update pts: 29675 < new pts 30016, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30015 + pts count: 1 = new pts: 30016. update pts: 29885 < new pts 30016, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30015 + pts count: 1 = new pts: 30016. update pts: 29959 < new pts 30016, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30015 + pts count: 1 = new pts: 30016. update pts: 29964 < new pts 30016, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30015 + pts count: 1 = new pts: 30016. update pts: 29969 < new pts 30016, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30015 + pts count: 1 = new pts: 30016. update pts: 29978 < new pts 30016, channel id: -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1466131 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1499372 bytes -ResponseHandler, danogentili: Received updates. -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30017, pts count: 1, new pts: 30018 < update pts: 30019, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -Wrote 1489180 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30017, pts count: 1, new pts: 30018 < update pts: 30020, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30020 + pts count: 1 = new pts: 30021. update pts: 28115 < new pts 30021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30020 + pts count: 1 = new pts: 30021. update pts: 29670 < new pts 30021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30020 + pts count: 1 = new pts: 30021. update pts: 29806 < new pts 30021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30020 + pts count: 1 = new pts: 30021. update pts: 29866 < new pts 30021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30020 + pts count: 1 = new pts: 30021. update pts: 29877 < new pts 30021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30020 + pts count: 1 = new pts: 30021. update pts: 29910 < new pts 30021, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30020 + pts count: 1 = new pts: 30021. update pts: 29941 < new pts 30021, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30017 + pts count: 1 = new pts: 30018. update pts: 28115 < new pts 30018, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30017 + pts count: 1 = new pts: 30018. update pts: 29714 < new pts 30018, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30017 + pts count: 1 = new pts: 30018. update pts: 29820 < new pts 30018, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30017 + pts count: 1 = new pts: 30018. update pts: 29888 < new pts 30018, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30017 + pts count: 1 = new pts: 30018. update pts: 29963 < new pts 30018, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30017 + pts count: 1 = new pts: 30018. update pts: 28115 < new pts 30018, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30017 + pts count: 1 = new pts: 30018. update pts: 29677 < new pts 30018, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30017 + pts count: 1 = new pts: 30018. update pts: 29799 < new pts 30018, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30017 + pts count: 1 = new pts: 30018. update pts: 29876 < new pts 30018, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30017 + pts count: 1 = new pts: 30018. update pts: 29932 < new pts 30018, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30017 + pts count: 1 = new pts: 30018. update pts: 29957 < new pts 30018, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30017 + pts count: 1 = new pts: 30018. update pts: 29994 < new pts 30018, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30018 + pts count: 1 = new pts: 30019. update pts: 28115 < new pts 30019, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30018 + pts count: 1 = new pts: 30019. update pts: 29650 < new pts 30019, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30018 + pts count: 1 = new pts: 30019. update pts: 29669 < new pts 30019, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30018 + pts count: 1 = new pts: 30019. update pts: 29745 < new pts 30019, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30018 + pts count: 1 = new pts: 30019. update pts: 29796 < new pts 30019, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30018 + pts count: 1 = new pts: 30019. update pts: 29839 < new pts 30019, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30018 + pts count: 1 = new pts: 30019. update pts: 30018 < new pts 30019, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1482807 bytes -AuthKeyHandler, danogentili: Calling 13316... -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1466130 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1489790 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30020, pts count: 1, new pts: 30021 < update pts: 30027, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received msgs_ack. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1506665 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30027 + pts count: 1 = new pts: 30028. update pts: 28115 < new pts 30028, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30027 + pts count: 1 = new pts: 30028. update pts: 29675 < new pts 30028, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30027 + pts count: 1 = new pts: 30028. update pts: 29885 < new pts 30028, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30027 + pts count: 1 = new pts: 30028. update pts: 29959 < new pts 30028, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30027 + pts count: 1 = new pts: 30028. update pts: 29964 < new pts 30028, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30027 + pts count: 1 = new pts: 30028. update pts: 29969 < new pts 30028, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30027 + pts count: 1 = new pts: 30028. update pts: 29978 < new pts 30028, channel id: -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30021 + pts count: 1 = new pts: 30022. update pts: 28115 < new pts 30022, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30021 + pts count: 1 = new pts: 30022. update pts: 29714 < new pts 30022, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30021 + pts count: 1 = new pts: 30022. update pts: 29820 < new pts 30022, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30021 + pts count: 1 = new pts: 30022. update pts: 29888 < new pts 30022, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30021 + pts count: 1 = new pts: 30022. update pts: 29963 < new pts 30022, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1502719 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30023 + pts count: 1 = new pts: 30024. update pts: 28115 < new pts 30024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30023 + pts count: 1 = new pts: 30024. update pts: 29670 < new pts 30024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30023 + pts count: 1 = new pts: 30024. update pts: 29806 < new pts 30024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30023 + pts count: 1 = new pts: 30024. update pts: 29866 < new pts 30024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30023 + pts count: 1 = new pts: 30024. update pts: 29877 < new pts 30024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30023 + pts count: 1 = new pts: 30024. update pts: 29910 < new pts 30024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30023 + pts count: 1 = new pts: 30024. update pts: 29941 < new pts 30024, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30025 + pts count: 1 = new pts: 30026. update pts: 28115 < new pts 30026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30025 + pts count: 1 = new pts: 30026. update pts: 29677 < new pts 30026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30025 + pts count: 1 = new pts: 30026. update pts: 29799 < new pts 30026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30025 + pts count: 1 = new pts: 30026. update pts: 29876 < new pts 30026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30025 + pts count: 1 = new pts: 30026. update pts: 29932 < new pts 30026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30025 + pts count: 1 = new pts: 30026. update pts: 29957 < new pts 30026, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30025 + pts count: 1 = new pts: 30026. update pts: 29994 < new pts 30026, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30023, pts count: 1, new pts: 30024 < update pts: 30029, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30026 + pts count: 1 = new pts: 30027. update pts: 28115 < new pts 30027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30026 + pts count: 1 = new pts: 30027. update pts: 29650 < new pts 30027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30026 + pts count: 1 = new pts: 30027. update pts: 29669 < new pts 30027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30026 + pts count: 1 = new pts: 30027. update pts: 29745 < new pts 30027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30026 + pts count: 1 = new pts: 30027. update pts: 29796 < new pts 30027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30026 + pts count: 1 = new pts: 30027. update pts: 29839 < new pts 30027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30026 + pts count: 1 = new pts: 30027. update pts: 30018 < new pts 30027, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1474436 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1484616 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30029, pts count: 1, new pts: 30030 < update pts: 30031, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1498193 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30029, pts count: 1, new pts: 30030 < update pts: 30033, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1500458 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30033 + pts count: 1 = new pts: 30034. update pts: 28115 < new pts 30034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30033 + pts count: 1 = new pts: 30034. update pts: 29714 < new pts 30034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30033 + pts count: 1 = new pts: 30034. update pts: 29820 < new pts 30034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30033 + pts count: 1 = new pts: 30034. update pts: 29888 < new pts 30034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30033 + pts count: 1 = new pts: 30034. update pts: 29963 < new pts 30034, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1505572 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30034 + pts count: 1 = new pts: 30035. update pts: 28115 < new pts 30035, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30034 + pts count: 1 = new pts: 30035. update pts: 29675 < new pts 30035, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30034 + pts count: 1 = new pts: 30035. update pts: 29885 < new pts 30035, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30034 + pts count: 1 = new pts: 30035. update pts: 29959 < new pts 30035, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30034 + pts count: 1 = new pts: 30035. update pts: 29964 < new pts 30035, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30034 + pts count: 1 = new pts: 30035. update pts: 29969 < new pts 30035, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30034 + pts count: 1 = new pts: 30035. update pts: 29978 < new pts 30035, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30030 + pts count: 1 = new pts: 30031. update pts: 28115 < new pts 30031, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30030 + pts count: 1 = new pts: 30031. update pts: 29677 < new pts 30031, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30030 + pts count: 1 = new pts: 30031. update pts: 29799 < new pts 30031, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30030 + pts count: 1 = new pts: 30031. update pts: 29876 < new pts 30031, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30030 + pts count: 1 = new pts: 30031. update pts: 29932 < new pts 30031, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30030 + pts count: 1 = new pts: 30031. update pts: 29957 < new pts 30031, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30030 + pts count: 1 = new pts: 30031. update pts: 29994 < new pts 30031, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30031 + pts count: 1 = new pts: 30032. update pts: 28115 < new pts 30032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30031 + pts count: 1 = new pts: 30032. update pts: 29670 < new pts 30032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30031 + pts count: 1 = new pts: 30032. update pts: 29806 < new pts 30032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30031 + pts count: 1 = new pts: 30032. update pts: 29866 < new pts 30032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30031 + pts count: 1 = new pts: 30032. update pts: 29877 < new pts 30032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30031 + pts count: 1 = new pts: 30032. update pts: 29910 < new pts 30032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30031 + pts count: 1 = new pts: 30032. update pts: 29941 < new pts 30032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30031, pts count: 1, new pts: 30032 < update pts: 30034, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30032 + pts count: 1 = new pts: 30033. update pts: 28115 < new pts 30033, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30032 + pts count: 1 = new pts: 30033. update pts: 29650 < new pts 30033, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30032 + pts count: 1 = new pts: 30033. update pts: 29669 < new pts 30033, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30032 + pts count: 1 = new pts: 30033. update pts: 29745 < new pts 30033, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30032 + pts count: 1 = new pts: 30033. update pts: 29796 < new pts 30033, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30032 + pts count: 1 = new pts: 30033. update pts: 29839 < new pts 30033, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30032 + pts count: 1 = new pts: 30033. update pts: 30018 < new pts 30033, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1471244 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30034, pts count: 1, new pts: 30035 < update pts: 30036, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -Wrote 1504458 bytes -AuthKeyHandler, danogentili: Calling 603556... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30034 + pts count: 1 = new pts: 30035. update pts: 28115 < new pts 30035, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30034 + pts count: 1 = new pts: 30035. update pts: 29714 < new pts 30035, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30034 + pts count: 1 = new pts: 30035. update pts: 29820 < new pts 30035, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30034 + pts count: 1 = new pts: 30035. update pts: 29888 < new pts 30035, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30034 + pts count: 1 = new pts: 30035. update pts: 29963 < new pts 30035, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1509770 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1485200 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30035 + pts count: 1 = new pts: 30036. update pts: 28115 < new pts 30036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30035 + pts count: 1 = new pts: 30036. update pts: 29677 < new pts 30036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30035 + pts count: 1 = new pts: 30036. update pts: 29799 < new pts 30036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30035 + pts count: 1 = new pts: 30036. update pts: 29876 < new pts 30036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30035 + pts count: 1 = new pts: 30036. update pts: 29932 < new pts 30036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30035 + pts count: 1 = new pts: 30036. update pts: 29957 < new pts 30036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30035 + pts count: 1 = new pts: 30036. update pts: 29994 < new pts 30036, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1508387 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1474749 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30036 + pts count: 1 = new pts: 30037. update pts: 28115 < new pts 30037, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30036 + pts count: 1 = new pts: 30037. update pts: 29650 < new pts 30037, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30036 + pts count: 1 = new pts: 30037. update pts: 29669 < new pts 30037, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30036 + pts count: 1 = new pts: 30037. update pts: 29745 < new pts 30037, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30036 + pts count: 1 = new pts: 30037. update pts: 29796 < new pts 30037, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30036 + pts count: 1 = new pts: 30037. update pts: 29839 < new pts 30037, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30036 + pts count: 1 = new pts: 30037. update pts: 30018 < new pts 30037, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30036, pts count: 1, new pts: 30037 < update pts: 30039, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30038 + pts count: 1 = new pts: 30039. update pts: 28115 < new pts 30039, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30038 + pts count: 1 = new pts: 30039. update pts: 29670 < new pts 30039, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30038 + pts count: 1 = new pts: 30039. update pts: 29806 < new pts 30039, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30038 + pts count: 1 = new pts: 30039. update pts: 29866 < new pts 30039, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30038 + pts count: 1 = new pts: 30039. update pts: 29877 < new pts 30039, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -UpdateHandler, danogentili: Duplicate update. current pts: 30038 + pts count: 1 = new pts: 30039. update pts: 29910 < new pts 30039, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -UpdateHandler, danogentili: Duplicate update. current pts: 30038 + pts count: 1 = new pts: 30039. update pts: 29941 < new pts 30039, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30038 + pts count: 1 = new pts: 30039. update pts: 30034 < new pts 30039, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 30036 + pts count: 1 = new pts: 30037. update pts: 28115 < new pts 30037, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30036 + pts count: 1 = new pts: 30037. update pts: 29675 < new pts 30037, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30036 + pts count: 1 = new pts: 30037. update pts: 29885 < new pts 30037, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30036 + pts count: 1 = new pts: 30037. update pts: 29959 < new pts 30037, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30036 + pts count: 1 = new pts: 30037. update pts: 29964 < new pts 30037, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30036 + pts count: 1 = new pts: 30037. update pts: 29969 < new pts 30037, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30036 + pts count: 1 = new pts: 30037. update pts: 29978 < new pts 30037, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30036 + pts count: 1 = new pts: 30037, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30036, pts count: 1, new pts: 30037 < update pts: 30044, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30039 + pts count: 1 = new pts: 30040. update pts: 28115 < new pts 30040, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30039 + pts count: 1 = new pts: 30040. update pts: 29714 < new pts 30040, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30039 + pts count: 1 = new pts: 30040. update pts: 29820 < new pts 30040, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30039 + pts count: 1 = new pts: 30040. update pts: 29888 < new pts 30040, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30039 + pts count: 1 = new pts: 30040. update pts: 29963 < new pts 30040, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1516002 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1500587 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Applying pts. current pts: 176 + pts count: 1 = new pts: 177, channel id: 10084044 -UpdateHandler, danogentili: Saving an update of type updateDeleteChannelMessages... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1508759 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Applying pts. current pts: 176 + pts count: 1 = new pts: 177, channel id: 10084044 -UpdateHandler, danogentili: Saving an update of type updateDeleteChannelMessages... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30044 + pts count: 1 = new pts: 30045. update pts: 28115 < new pts 30045, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30044 + pts count: 1 = new pts: 30045. update pts: 29677 < new pts 30045, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30044 + pts count: 1 = new pts: 30045. update pts: 29799 < new pts 30045, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30044 + pts count: 1 = new pts: 30045. update pts: 29876 < new pts 30045, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30044 + pts count: 1 = new pts: 30045. update pts: 29932 < new pts 30045, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30044 + pts count: 1 = new pts: 30045. update pts: 29957 < new pts 30045, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30044 + pts count: 1 = new pts: 30045. update pts: 29994 < new pts 30045, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1482164 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30045, pts count: 1, new pts: 30046 < update pts: 30047, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1519430 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30048 + pts count: 1 = new pts: 30049. update pts: 28115 < new pts 30049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30048 + pts count: 1 = new pts: 30049. update pts: 29675 < new pts 30049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30048 + pts count: 1 = new pts: 30049. update pts: 29885 < new pts 30049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30048 + pts count: 1 = new pts: 30049. update pts: 29959 < new pts 30049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30048 + pts count: 1 = new pts: 30049. update pts: 29964 < new pts 30049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30048 + pts count: 1 = new pts: 30049. update pts: 29969 < new pts 30049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30048 + pts count: 1 = new pts: 30049. update pts: 29978 < new pts 30049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30048 + pts count: 1 = new pts: 30049. update pts: 30037 < new pts 30049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30045 + pts count: 1 = new pts: 30046. update pts: 28115 < new pts 30046, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30045 + pts count: 1 = new pts: 30046. update pts: 29670 < new pts 30046, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30045 + pts count: 1 = new pts: 30046. update pts: 29806 < new pts 30046, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30045 + pts count: 1 = new pts: 30046. update pts: 29866 < new pts 30046, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30045 + pts count: 1 = new pts: 30046. update pts: 29877 < new pts 30046, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30045 + pts count: 1 = new pts: 30046. update pts: 29910 < new pts 30046, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30045 + pts count: 1 = new pts: 30046. update pts: 29941 < new pts 30046, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30045 + pts count: 1 = new pts: 30046. update pts: 30034 < new pts 30046, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Applying pts. current pts: 176 + pts count: 1 = new pts: 177, channel id: 10084044 -UpdateHandler, danogentili: Saving an update of type updateDeleteChannelMessages... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30046 + pts count: 1 = new pts: 30047. update pts: 28115 < new pts 30047, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30046 + pts count: 1 = new pts: 30047. update pts: 29714 < new pts 30047, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30046 + pts count: 1 = new pts: 30047. update pts: 29820 < new pts 30047, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30046 + pts count: 1 = new pts: 30047. update pts: 29888 < new pts 30047, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30046 + pts count: 1 = new pts: 30047. update pts: 29963 < new pts 30047, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30046 + pts count: 1 = new pts: 30047. update pts: 30046 < new pts 30047, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getChannelDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30046 + pts count: 1 = new pts: 30047. update pts: 28115 < new pts 30047, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30046 + pts count: 1 = new pts: 30047. update pts: 29650 < new pts 30047, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30046 + pts count: 1 = new pts: 30047. update pts: 29669 < new pts 30047, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30046 + pts count: 1 = new pts: 30047. update pts: 29745 < new pts 30047, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30046 + pts count: 1 = new pts: 30047. update pts: 29796 < new pts 30047, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30046 + pts count: 1 = new pts: 30047. update pts: 29839 < new pts 30047, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30046 + pts count: 1 = new pts: 30047. update pts: 30018 < new pts 30047, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30046 + pts count: 1 = new pts: 30047. update pts: 30039 < new pts 30047, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30046, pts count: 1, new pts: 30047 < update pts: 30049, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1513994 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.channelDifference -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Saving an update of type updateDeleteChannelMessages... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -Wrote 1506874 bytes -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30048, pts count: 1, new pts: 30049 < update pts: 30051, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 28115 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 29677 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 29799 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 29876 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 29932 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 29957 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 29994 < new pts 30053, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1491146 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1526289 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30050 + pts count: 1 = new pts: 30051. update pts: 28115 < new pts 30051, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30050 + pts count: 1 = new pts: 30051. update pts: 29670 < new pts 30051, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30050 + pts count: 1 = new pts: 30051. update pts: 29806 < new pts 30051, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30050 + pts count: 1 = new pts: 30051. update pts: 29866 < new pts 30051, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30050 + pts count: 1 = new pts: 30051. update pts: 29877 < new pts 30051, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30050 + pts count: 1 = new pts: 30051. update pts: 29910 < new pts 30051, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30050 + pts count: 1 = new pts: 30051. update pts: 29941 < new pts 30051, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30050 + pts count: 1 = new pts: 30051. update pts: 30034 < new pts 30051, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30050 + pts count: 1 = new pts: 30051. update pts: 28115 < new pts 30051, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30050 + pts count: 1 = new pts: 30051. update pts: 29675 < new pts 30051, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30050 + pts count: 1 = new pts: 30051. update pts: 29885 < new pts 30051, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30050 + pts count: 1 = new pts: 30051. update pts: 29959 < new pts 30051, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30050 + pts count: 1 = new pts: 30051. update pts: 29964 < new pts 30051, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30050 + pts count: 1 = new pts: 30051. update pts: 29969 < new pts 30051, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30050 + pts count: 1 = new pts: 30051. update pts: 29978 < new pts 30051, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30050 + pts count: 1 = new pts: 30051. update pts: 30037 < new pts 30051, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1488171 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 28115 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 29650 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 29669 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 29745 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 29796 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 29839 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 30018 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 30039 < new pts 30053, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1509065 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 28115 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 29714 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 29820 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 29888 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 29963 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30052 + pts count: 1 = new pts: 30053. update pts: 30046 < new pts 30053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30053 + pts count: 1 = new pts: 30054, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1508005 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30052, pts count: 1, new pts: 30053 < update pts: 30055, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1521069 bytes -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30055 + pts count: 1 = new pts: 30056. update pts: 28115 < new pts 30056, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30055 + pts count: 1 = new pts: 30056. update pts: 29677 < new pts 30056, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30055 + pts count: 1 = new pts: 30056. update pts: 29799 < new pts 30056, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30055 + pts count: 1 = new pts: 30056. update pts: 29876 < new pts 30056, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30055 + pts count: 1 = new pts: 30056. update pts: 29932 < new pts 30056, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30055 + pts count: 1 = new pts: 30056. update pts: 29957 < new pts 30056, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30055 + pts count: 1 = new pts: 30056. update pts: 29994 < new pts 30056, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1489950 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30053, pts count: 1, new pts: 30054 < update pts: 30056, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30053 + pts count: 1 = new pts: 30054. update pts: 28115 < new pts 30054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30053 + pts count: 1 = new pts: 30054. update pts: 29650 < new pts 30054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30053 + pts count: 1 = new pts: 30054. update pts: 29669 < new pts 30054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30053 + pts count: 1 = new pts: 30054. update pts: 29745 < new pts 30054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30053 + pts count: 1 = new pts: 30054. update pts: 29796 < new pts 30054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30053 + pts count: 1 = new pts: 30054. update pts: 29839 < new pts 30054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30053 + pts count: 1 = new pts: 30054. update pts: 30018 < new pts 30054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30053 + pts count: 1 = new pts: 30054. update pts: 30039 < new pts 30054, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1491153 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30056 + pts count: 1 = new pts: 30057. update pts: 28115 < new pts 30057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30056 + pts count: 1 = new pts: 30057. update pts: 29670 < new pts 30057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30056 + pts count: 1 = new pts: 30057. update pts: 29806 < new pts 30057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30056 + pts count: 1 = new pts: 30057. update pts: 29866 < new pts 30057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30056 + pts count: 1 = new pts: 30057. update pts: 29877 < new pts 30057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30056 + pts count: 1 = new pts: 30057. update pts: 29910 < new pts 30057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30056 + pts count: 1 = new pts: 30057. update pts: 29941 < new pts 30057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30056 + pts count: 1 = new pts: 30057. update pts: 30034 < new pts 30057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30054 + pts count: 1 = new pts: 30055. update pts: 28115 < new pts 30055, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30054 + pts count: 1 = new pts: 30055. update pts: 29675 < new pts 30055, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30054 + pts count: 1 = new pts: 30055. update pts: 29885 < new pts 30055, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30054 + pts count: 1 = new pts: 30055. update pts: 29959 < new pts 30055, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30054 + pts count: 1 = new pts: 30055. update pts: 29964 < new pts 30055, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30054 + pts count: 1 = new pts: 30055. update pts: 29969 < new pts 30055, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30054 + pts count: 1 = new pts: 30055. update pts: 29978 < new pts 30055, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30054 + pts count: 1 = new pts: 30055. update pts: 30037 < new pts 30055, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30055, pts count: 1, new pts: 30056 < update pts: 30058, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1509518 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30063 + pts count: 1 = new pts: 30064. update pts: 28115 < new pts 30064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30063 + pts count: 1 = new pts: 30064. update pts: 29714 < new pts 30064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30063 + pts count: 1 = new pts: 30064. update pts: 29820 < new pts 30064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30063 + pts count: 1 = new pts: 30064. update pts: 29888 < new pts 30064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30063 + pts count: 1 = new pts: 30064. update pts: 29963 < new pts 30064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30063 + pts count: 1 = new pts: 30064. update pts: 30046 < new pts 30064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30063, pts count: 1, new pts: 30064 < update pts: 30065, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30059 + pts count: 1 = new pts: 30060. update pts: 28115 < new pts 30060, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30059 + pts count: 1 = new pts: 30060. update pts: 29677 < new pts 30060, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30059 + pts count: 1 = new pts: 30060. update pts: 29799 < new pts 30060, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30059 + pts count: 1 = new pts: 30060. update pts: 29876 < new pts 30060, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30059 + pts count: 1 = new pts: 30060. update pts: 29932 < new pts 30060, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30059 + pts count: 1 = new pts: 30060. update pts: 29957 < new pts 30060, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30059 + pts count: 1 = new pts: 30060. update pts: 29994 < new pts 30060, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1535083 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1502827 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1514522 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30065 + pts count: 1 = new pts: 30066. update pts: 28115 < new pts 30066, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30065 + pts count: 1 = new pts: 30066. update pts: 29650 < new pts 30066, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30065 + pts count: 1 = new pts: 30066. update pts: 29669 < new pts 30066, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30065 + pts count: 1 = new pts: 30066. update pts: 29745 < new pts 30066, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30065 + pts count: 1 = new pts: 30066. update pts: 29796 < new pts 30066, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30065 + pts count: 1 = new pts: 30066. update pts: 29839 < new pts 30066, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30065 + pts count: 1 = new pts: 30066. update pts: 30018 < new pts 30066, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30065 + pts count: 1 = new pts: 30066. update pts: 30039 < new pts 30066, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30065 + pts count: 1 = new pts: 30066. update pts: 28115 < new pts 30066, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30065 + pts count: 1 = new pts: 30066. update pts: 29675 < new pts 30066, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30065 + pts count: 1 = new pts: 30066. update pts: 29885 < new pts 30066, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30065 + pts count: 1 = new pts: 30066. update pts: 29959 < new pts 30066, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30065 + pts count: 1 = new pts: 30066. update pts: 29964 < new pts 30066, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30065 + pts count: 1 = new pts: 30066. update pts: 29969 < new pts 30066, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30065 + pts count: 1 = new pts: 30066. update pts: 29978 < new pts 30066, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30065 + pts count: 1 = new pts: 30066. update pts: 30037 < new pts 30066, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1497335 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30064 + pts count: 1 = new pts: 30065. update pts: 28115 < new pts 30065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30064 + pts count: 1 = new pts: 30065. update pts: 29670 < new pts 30065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30064 + pts count: 1 = new pts: 30065. update pts: 29806 < new pts 30065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30064 + pts count: 1 = new pts: 30065. update pts: 29866 < new pts 30065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30064 + pts count: 1 = new pts: 30065. update pts: 29877 < new pts 30065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30064 + pts count: 1 = new pts: 30065. update pts: 29910 < new pts 30065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30064 + pts count: 1 = new pts: 30065. update pts: 29941 < new pts 30065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30064 + pts count: 1 = new pts: 30065. update pts: 30034 < new pts 30065, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30064, pts count: 1, new pts: 30065 < update pts: 30066, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30068 + pts count: 1 = new pts: 30069, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30067 + pts count: 1 = new pts: 30068. update pts: 28115 < new pts 30068, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30067 + pts count: 1 = new pts: 30068. update pts: 29714 < new pts 30068, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30067 + pts count: 1 = new pts: 30068. update pts: 29820 < new pts 30068, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30067 + pts count: 1 = new pts: 30068. update pts: 29888 < new pts 30068, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30067 + pts count: 1 = new pts: 30068. update pts: 29963 < new pts 30068, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30067 + pts count: 1 = new pts: 30068. update pts: 30046 < new pts 30068, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1522625 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30068 + pts count: 1 = new pts: 30069. update pts: 28115 < new pts 30069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30068 + pts count: 1 = new pts: 30069. update pts: 29677 < new pts 30069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30068 + pts count: 1 = new pts: 30069. update pts: 29799 < new pts 30069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30068 + pts count: 1 = new pts: 30069. update pts: 29876 < new pts 30069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30068 + pts count: 1 = new pts: 30069. update pts: 29932 < new pts 30069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30068 + pts count: 1 = new pts: 30069. update pts: 29957 < new pts 30069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30068 + pts count: 1 = new pts: 30069. update pts: 29994 < new pts 30069, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1537153 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1500197 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30069, pts count: 1, new pts: 30070 < update pts: 30073, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1493856 bytes -AuthKeyHandler, danogentili: Calling 714489... -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30069 + pts count: 1 = new pts: 30070. update pts: 28115 < new pts 30070, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30069 + pts count: 1 = new pts: 30070. update pts: 29650 < new pts 30070, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30069 + pts count: 1 = new pts: 30070. update pts: 29669 < new pts 30070, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30069 + pts count: 1 = new pts: 30070. update pts: 29745 < new pts 30070, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30069 + pts count: 1 = new pts: 30070. update pts: 29796 < new pts 30070, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30069 + pts count: 1 = new pts: 30070. update pts: 29839 < new pts 30070, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30069 + pts count: 1 = new pts: 30070. update pts: 30018 < new pts 30070, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30069 + pts count: 1 = new pts: 30070. update pts: 30039 < new pts 30070, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30074 + pts count: 1 = new pts: 30075. update pts: 28115 < new pts 30075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30074 + pts count: 1 = new pts: 30075. update pts: 29675 < new pts 30075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30074 + pts count: 1 = new pts: 30075. update pts: 29885 < new pts 30075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30074 + pts count: 1 = new pts: 30075. update pts: 29959 < new pts 30075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30074 + pts count: 1 = new pts: 30075. update pts: 29964 < new pts 30075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30074 + pts count: 1 = new pts: 30075. update pts: 29969 < new pts 30075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30074 + pts count: 1 = new pts: 30075. update pts: 29978 < new pts 30075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30074 + pts count: 1 = new pts: 30075. update pts: 30037 < new pts 30075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1517079 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30071, pts count: 1, new pts: 30072 < update pts: 30075, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30075 + pts count: 1 = new pts: 30076. update pts: 28115 < new pts 30076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30075 + pts count: 1 = new pts: 30076. update pts: 29714 < new pts 30076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30075 + pts count: 1 = new pts: 30076. update pts: 29820 < new pts 30076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30075 + pts count: 1 = new pts: 30076. update pts: 29888 < new pts 30076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30075 + pts count: 1 = new pts: 30076. update pts: 29963 < new pts 30076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30075 + pts count: 1 = new pts: 30076. update pts: 30046 < new pts 30076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30072 + pts count: 1 = new pts: 30073. update pts: 28115 < new pts 30073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30072 + pts count: 1 = new pts: 30073. update pts: 29670 < new pts 30073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30072 + pts count: 1 = new pts: 30073. update pts: 29806 < new pts 30073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30072 + pts count: 1 = new pts: 30073. update pts: 29866 < new pts 30073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30072 + pts count: 1 = new pts: 30073. update pts: 29877 < new pts 30073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30072 + pts count: 1 = new pts: 30073. update pts: 29910 < new pts 30073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30072 + pts count: 1 = new pts: 30073. update pts: 29941 < new pts 30073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30072 + pts count: 1 = new pts: 30073. update pts: 30034 < new pts 30073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30072 + pts count: 1 = new pts: 30073. update pts: 30066 < new pts 30073, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1528940 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30074 + pts count: 1 = new pts: 30075. update pts: 28115 < new pts 30075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30074 + pts count: 1 = new pts: 30075. update pts: 29677 < new pts 30075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30074 + pts count: 1 = new pts: 30075. update pts: 29799 < new pts 30075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30074 + pts count: 1 = new pts: 30075. update pts: 29876 < new pts 30075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30074 + pts count: 1 = new pts: 30075. update pts: 29932 < new pts 30075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30074 + pts count: 1 = new pts: 30075. update pts: 29957 < new pts 30075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30074 + pts count: 1 = new pts: 30075. update pts: 29994 < new pts 30075, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30074, pts count: 1, new pts: 30075 < update pts: 30077, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1552402 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1504476 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30075 + pts count: 1 = new pts: 30076. update pts: 28115 < new pts 30076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30075 + pts count: 1 = new pts: 30076. update pts: 29650 < new pts 30076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30075 + pts count: 1 = new pts: 30076. update pts: 29669 < new pts 30076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30075 + pts count: 1 = new pts: 30076. update pts: 29745 < new pts 30076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30075 + pts count: 1 = new pts: 30076. update pts: 29796 < new pts 30076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30075 + pts count: 1 = new pts: 30076. update pts: 29839 < new pts 30076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30075 + pts count: 1 = new pts: 30076. update pts: 30018 < new pts 30076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30075 + pts count: 1 = new pts: 30076. update pts: 30039 < new pts 30076, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1499059 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30077 + pts count: 1 = new pts: 30078. update pts: 28115 < new pts 30078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30077 + pts count: 1 = new pts: 30078. update pts: 29675 < new pts 30078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30077 + pts count: 1 = new pts: 30078. update pts: 29885 < new pts 30078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30077 + pts count: 1 = new pts: 30078. update pts: 29959 < new pts 30078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30077 + pts count: 1 = new pts: 30078. update pts: 29964 < new pts 30078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30077 + pts count: 1 = new pts: 30078. update pts: 29969 < new pts 30078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30077 + pts count: 1 = new pts: 30078. update pts: 29978 < new pts 30078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30077 + pts count: 1 = new pts: 30078. update pts: 30037 < new pts 30078, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1524676 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30078 + pts count: 1 = new pts: 30079. update pts: 28115 < new pts 30079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30078 + pts count: 1 = new pts: 30079. update pts: 29714 < new pts 30079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30078 + pts count: 1 = new pts: 30079. update pts: 29820 < new pts 30079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30078 + pts count: 1 = new pts: 30079. update pts: 29888 < new pts 30079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30078 + pts count: 1 = new pts: 30079. update pts: 29963 < new pts 30079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30078 + pts count: 1 = new pts: 30079. update pts: 30046 < new pts 30079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30078 + pts count: 1 = new pts: 30079. update pts: 28115 < new pts 30079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30078 + pts count: 1 = new pts: 30079. update pts: 29670 < new pts 30079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30078 + pts count: 1 = new pts: 30079. update pts: 29806 < new pts 30079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30078 + pts count: 1 = new pts: 30079. update pts: 29866 < new pts 30079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30078 + pts count: 1 = new pts: 30079. update pts: 29877 < new pts 30079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30078 + pts count: 1 = new pts: 30079. update pts: 29910 < new pts 30079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30078 + pts count: 1 = new pts: 30079. update pts: 29941 < new pts 30079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30078 + pts count: 1 = new pts: 30079. update pts: 30034 < new pts 30079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30078 + pts count: 1 = new pts: 30079. update pts: 30066 < new pts 30079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1530106 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30080 + pts count: 1 = new pts: 30081. update pts: 28115 < new pts 30081, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30080 + pts count: 1 = new pts: 30081. update pts: 29677 < new pts 30081, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30080 + pts count: 1 = new pts: 30081. update pts: 29799 < new pts 30081, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30080 + pts count: 1 = new pts: 30081. update pts: 29876 < new pts 30081, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30080 + pts count: 1 = new pts: 30081. update pts: 29932 < new pts 30081, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30080 + pts count: 1 = new pts: 30081. update pts: 29957 < new pts 30081, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30080 + pts count: 1 = new pts: 30081. update pts: 29994 < new pts 30081, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30080 + pts count: 1 = new pts: 30081. update pts: 30077 < new pts 30081, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -Wrote 1562117 bytes -AuthKeyHandler, danogentili: Calling 304401... -ResponseHandler, danogentili: Received updates. -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1510961 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30082 + pts count: 1 = new pts: 30083. update pts: 28115 < new pts 30083, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30082 + pts count: 1 = new pts: 30083. update pts: 29650 < new pts 30083, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30082 + pts count: 1 = new pts: 30083. update pts: 29669 < new pts 30083, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30082 + pts count: 1 = new pts: 30083. update pts: 29745 < new pts 30083, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30082 + pts count: 1 = new pts: 30083. update pts: 29796 < new pts 30083, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30082 + pts count: 1 = new pts: 30083. update pts: 29839 < new pts 30083, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30082 + pts count: 1 = new pts: 30083. update pts: 30018 < new pts 30083, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30082 + pts count: 1 = new pts: 30083. update pts: 30039 < new pts 30083, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30083 + pts count: 1 = new pts: 30084. update pts: 28115 < new pts 30084, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30083 + pts count: 1 = new pts: 30084. update pts: 29675 < new pts 30084, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30083 + pts count: 1 = new pts: 30084. update pts: 29885 < new pts 30084, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30083 + pts count: 1 = new pts: 30084. update pts: 29959 < new pts 30084, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30083 + pts count: 1 = new pts: 30084. update pts: 29964 < new pts 30084, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30083 + pts count: 1 = new pts: 30084. update pts: 29969 < new pts 30084, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30083 + pts count: 1 = new pts: 30084. update pts: 29978 < new pts 30084, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30083 + pts count: 1 = new pts: 30084. update pts: 30037 < new pts 30084, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30083 + pts count: 1 = new pts: 30084. update pts: 30083 < new pts 30084, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1526350 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1507886 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30085 + pts count: 1 = new pts: 30086. update pts: 28115 < new pts 30086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30085 + pts count: 1 = new pts: 30086. update pts: 29670 < new pts 30086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30085 + pts count: 1 = new pts: 30086. update pts: 29806 < new pts 30086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30085 + pts count: 1 = new pts: 30086. update pts: 29866 < new pts 30086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30085 + pts count: 1 = new pts: 30086. update pts: 29877 < new pts 30086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30085 + pts count: 1 = new pts: 30086. update pts: 29910 < new pts 30086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30085 + pts count: 1 = new pts: 30086. update pts: 29941 < new pts 30086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30085 + pts count: 1 = new pts: 30086. update pts: 30034 < new pts 30086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30085 + pts count: 1 = new pts: 30086. update pts: 30066 < new pts 30086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30085 + pts count: 1 = new pts: 30086. update pts: 28115 < new pts 30086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30085 + pts count: 1 = new pts: 30086. update pts: 29714 < new pts 30086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30085 + pts count: 1 = new pts: 30086. update pts: 29820 < new pts 30086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30085 + pts count: 1 = new pts: 30086. update pts: 29888 < new pts 30086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30085 + pts count: 1 = new pts: 30086. update pts: 29963 < new pts 30086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30085 + pts count: 1 = new pts: 30086. update pts: 30046 < new pts 30086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1531800 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30088, pts count: 1, new pts: 30089 < update pts: 30090, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 28115 < new pts 30093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 29677 < new pts 30093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 29799 < new pts 30093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 29876 < new pts 30093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 29932 < new pts 30093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 29957 < new pts 30093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 29994 < new pts 30093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 30077 < new pts 30093, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1571789 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1512242 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30089, pts count: 1, new pts: 30090 < update pts: 30094, channel id: -ResponseHandler, danogentili: Received rpc_result. -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30094 + pts count: 1 = new pts: 30095. update pts: 28115 < new pts 30095, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30094 + pts count: 1 = new pts: 30095. update pts: 29650 < new pts 30095, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30094 + pts count: 1 = new pts: 30095. update pts: 29669 < new pts 30095, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30094 + pts count: 1 = new pts: 30095. update pts: 29745 < new pts 30095, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30094 + pts count: 1 = new pts: 30095. update pts: 29796 < new pts 30095, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30094 + pts count: 1 = new pts: 30095. update pts: 29839 < new pts 30095, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30094 + pts count: 1 = new pts: 30095. update pts: 30018 < new pts 30095, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30094 + pts count: 1 = new pts: 30095. update pts: 30039 < new pts 30095, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30089 + pts count: 1 = new pts: 30090. update pts: 28115 < new pts 30090, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30089 + pts count: 1 = new pts: 30090. update pts: 29675 < new pts 30090, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30089 + pts count: 1 = new pts: 30090. update pts: 29885 < new pts 30090, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30089 + pts count: 1 = new pts: 30090. update pts: 29959 < new pts 30090, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30089 + pts count: 1 = new pts: 30090. update pts: 29964 < new pts 30090, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30089 + pts count: 1 = new pts: 30090. update pts: 29969 < new pts 30090, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30089 + pts count: 1 = new pts: 30090. update pts: 29978 < new pts 30090, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30089 + pts count: 1 = new pts: 30090. update pts: 30037 < new pts 30090, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30089 + pts count: 1 = new pts: 30090. update pts: 30083 < new pts 30090, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1524700 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1518605 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 28115 < new pts 30093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 29670 < new pts 30093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 29806 < new pts 30093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 29866 < new pts 30093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 29877 < new pts 30093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 29910 < new pts 30093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 29941 < new pts 30093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 30034 < new pts 30093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 30066 < new pts 30093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30092 + pts count: 1 = new pts: 30093. update pts: 30092 < new pts 30093, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1530193 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30093 + pts count: 1 = new pts: 30094. update pts: 28115 < new pts 30094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30093 + pts count: 1 = new pts: 30094. update pts: 29714 < new pts 30094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30093 + pts count: 1 = new pts: 30094. update pts: 29820 < new pts 30094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30093 + pts count: 1 = new pts: 30094. update pts: 29888 < new pts 30094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30093 + pts count: 1 = new pts: 30094. update pts: 29963 < new pts 30094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30093 + pts count: 1 = new pts: 30094. update pts: 30046 < new pts 30094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1570627 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30094, pts count: 1, new pts: 30095 < update pts: 30096, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1518382 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 28115 < new pts 30099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 29677 < new pts 30099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 29799 < new pts 30099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 29876 < new pts 30099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 29932 < new pts 30099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 29957 < new pts 30099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 29994 < new pts 30099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 30077 < new pts 30099, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 28115 < new pts 30096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 29650 < new pts 30096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 29669 < new pts 30096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 29745 < new pts 30096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 29796 < new pts 30096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 29839 < new pts 30096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 30018 < new pts 30096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 30039 < new pts 30096, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1532456 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 28115 < new pts 30096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 29675 < new pts 30096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 29885 < new pts 30096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 29959 < new pts 30096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 29964 < new pts 30096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 29969 < new pts 30096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 29978 < new pts 30096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 30037 < new pts 30096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30095 + pts count: 1 = new pts: 30096. update pts: 30083 < new pts 30096, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1524342 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 28115 < new pts 30099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 29670 < new pts 30099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 29806 < new pts 30099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 29866 < new pts 30099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 29877 < new pts 30099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 29910 < new pts 30099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 29941 < new pts 30099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 30034 < new pts 30099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 30066 < new pts 30099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30098 + pts count: 1 = new pts: 30099. update pts: 30092 < new pts 30099, channel id: -AuthKeyHandler, danogentili: Generating g_a... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30099, pts count: 1, new pts: 30100 < update pts: 30101, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1579795 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1527812 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1520656 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30101 + pts count: 1 = new pts: 30102. update pts: 28115 < new pts 30102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30101 + pts count: 1 = new pts: 30102. update pts: 29714 < new pts 30102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30101 + pts count: 1 = new pts: 30102. update pts: 29820 < new pts 30102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30101 + pts count: 1 = new pts: 30102. update pts: 29888 < new pts 30102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30101 + pts count: 1 = new pts: 30102. update pts: 29963 < new pts 30102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30101 + pts count: 1 = new pts: 30102. update pts: 30046 < new pts 30102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30100, pts count: 1, new pts: 30101 < update pts: 30104, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 28115 < new pts 30101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 29675 < new pts 30101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 29885 < new pts 30101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 29959 < new pts 30101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 29964 < new pts 30101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 29969 < new pts 30101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 29978 < new pts 30101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 30037 < new pts 30101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 30083 < new pts 30101, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 28115 < new pts 30101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 29677 < new pts 30101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 29799 < new pts 30101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 29876 < new pts 30101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 29932 < new pts 30101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 29957 < new pts 30101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 29994 < new pts 30101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30100 + pts count: 1 = new pts: 30101. update pts: 30077 < new pts 30101, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1533807 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 28115 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 29650 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 29669 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 29745 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 29796 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 29839 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 30018 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 30039 < new pts 30106, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30104 + pts count: 1 = new pts: 30105. update pts: 28115 < new pts 30105, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30104 + pts count: 1 = new pts: 30105. update pts: 29670 < new pts 30105, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30104 + pts count: 1 = new pts: 30105. update pts: 29806 < new pts 30105, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30104 + pts count: 1 = new pts: 30105. update pts: 29866 < new pts 30105, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30104 + pts count: 1 = new pts: 30105. update pts: 29877 < new pts 30105, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30104 + pts count: 1 = new pts: 30105. update pts: 29910 < new pts 30105, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30104 + pts count: 1 = new pts: 30105. update pts: 29941 < new pts 30105, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30104 + pts count: 1 = new pts: 30105. update pts: 30034 < new pts 30105, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30104 + pts count: 1 = new pts: 30105. update pts: 30066 < new pts 30105, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30104 + pts count: 1 = new pts: 30105. update pts: 30092 < new pts 30105, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1524449 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1526215 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1533109 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30105, pts count: 1, new pts: 30106 < update pts: 30107, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1581123 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 28115 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 29714 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 29820 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 29888 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 29963 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 30046 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30105, pts count: 1, new pts: 30106 < update pts: 30108, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30108 + pts count: 1 = new pts: 30109. update pts: 28115 < new pts 30109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30108 + pts count: 1 = new pts: 30109. update pts: 29675 < new pts 30109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30108 + pts count: 1 = new pts: 30109. update pts: 29885 < new pts 30109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30108 + pts count: 1 = new pts: 30109. update pts: 29959 < new pts 30109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30108 + pts count: 1 = new pts: 30109. update pts: 29964 < new pts 30109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30108 + pts count: 1 = new pts: 30109. update pts: 29969 < new pts 30109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30108 + pts count: 1 = new pts: 30109. update pts: 29978 < new pts 30109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30108 + pts count: 1 = new pts: 30109. update pts: 30037 < new pts 30109, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30108 + pts count: 1 = new pts: 30109. update pts: 30083 < new pts 30109, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 28115 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 29677 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 29799 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 29876 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 29932 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 29957 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 29994 < new pts 30106, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30105 + pts count: 1 = new pts: 30106. update pts: 30077 < new pts 30106, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1533233 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30106 + pts count: 1 = new pts: 30107. update pts: 28115 < new pts 30107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30106 + pts count: 1 = new pts: 30107. update pts: 29650 < new pts 30107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30106 + pts count: 1 = new pts: 30107. update pts: 29669 < new pts 30107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30106 + pts count: 1 = new pts: 30107. update pts: 29745 < new pts 30107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30106 + pts count: 1 = new pts: 30107. update pts: 29796 < new pts 30107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30106 + pts count: 1 = new pts: 30107. update pts: 29839 < new pts 30107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30106 + pts count: 1 = new pts: 30107. update pts: 30018 < new pts 30107, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30106 + pts count: 1 = new pts: 30107. update pts: 30039 < new pts 30107, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30107 + pts count: 1 = new pts: 30108. update pts: 28115 < new pts 30108, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30107 + pts count: 1 = new pts: 30108. update pts: 29670 < new pts 30108, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30107 + pts count: 1 = new pts: 30108. update pts: 29806 < new pts 30108, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30107 + pts count: 1 = new pts: 30108. update pts: 29866 < new pts 30108, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30107 + pts count: 1 = new pts: 30108. update pts: 29877 < new pts 30108, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30107 + pts count: 1 = new pts: 30108. update pts: 29910 < new pts 30108, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30107 + pts count: 1 = new pts: 30108. update pts: 29941 < new pts 30108, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30107 + pts count: 1 = new pts: 30108. update pts: 30034 < new pts 30108, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30107 + pts count: 1 = new pts: 30108. update pts: 30066 < new pts 30108, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30107 + pts count: 1 = new pts: 30108. update pts: 30092 < new pts 30108, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1527808 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1529407 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1539107 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 28115 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 29714 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 29820 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 29888 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 29963 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 30046 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1583625 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1535822 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30111, pts count: 1, new pts: 30112 < update pts: 30114, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 28115 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 29675 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 29885 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 29959 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 29964 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 29969 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 29978 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 30037 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 30083 < new pts 30112, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 28115 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 29650 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 29669 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 29745 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 29796 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 29839 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 30018 < new pts 30112, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30111 + pts count: 1 = new pts: 30112. update pts: 30039 < new pts 30112, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30115 + pts count: 1 = new pts: 30116. update pts: 28115 < new pts 30116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30115 + pts count: 1 = new pts: 30116. update pts: 29677 < new pts 30116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30115 + pts count: 1 = new pts: 30116. update pts: 29799 < new pts 30116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30115 + pts count: 1 = new pts: 30116. update pts: 29876 < new pts 30116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30115 + pts count: 1 = new pts: 30116. update pts: 29932 < new pts 30116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30115 + pts count: 1 = new pts: 30116. update pts: 29957 < new pts 30116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30115 + pts count: 1 = new pts: 30116. update pts: 29994 < new pts 30116, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30115 + pts count: 1 = new pts: 30116. update pts: 30077 < new pts 30116, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30112 + pts count: 1 = new pts: 30113. update pts: 28115 < new pts 30113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30112 + pts count: 1 = new pts: 30113. update pts: 29670 < new pts 30113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30112 + pts count: 1 = new pts: 30113. update pts: 29806 < new pts 30113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30112 + pts count: 1 = new pts: 30113. update pts: 29866 < new pts 30113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30112 + pts count: 1 = new pts: 30113. update pts: 29877 < new pts 30113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30112 + pts count: 1 = new pts: 30113. update pts: 29910 < new pts 30113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30112 + pts count: 1 = new pts: 30113. update pts: 29941 < new pts 30113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30112 + pts count: 1 = new pts: 30113. update pts: 30034 < new pts 30113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30112 + pts count: 1 = new pts: 30113. update pts: 30066 < new pts 30113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30112 + pts count: 1 = new pts: 30113. update pts: 30092 < new pts 30113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30112 + pts count: 1 = new pts: 30113, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30115, pts count: 1, new pts: 30116 < update pts: 30119, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1528813 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1536159 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1591979 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30116 + pts count: 1 = new pts: 30117. update pts: 28115 < new pts 30117, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30116 + pts count: 1 = new pts: 30117. update pts: 29714 < new pts 30117, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30116 + pts count: 1 = new pts: 30117. update pts: 29820 < new pts 30117, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30116 + pts count: 1 = new pts: 30117. update pts: 29888 < new pts 30117, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30116 + pts count: 1 = new pts: 30117. update pts: 29963 < new pts 30117, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30116 + pts count: 1 = new pts: 30117. update pts: 30046 < new pts 30117, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30116 + pts count: 1 = new pts: 30117. update pts: 30116 < new pts 30117, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1545693 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 28115 < new pts 30120, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 29675 < new pts 30120, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 29885 < new pts 30120, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 29959 < new pts 30120, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -AuthKeyHandler, danogentili: VERBOSE -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 29964 < new pts 30120, channel id: -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 29969 < new pts 30120, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 29978 < new pts 30120, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 30037 < new pts 30120, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 30083 < new pts 30120, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30120, pts count: 1, new pts: 30121 < update pts: 30122, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1543314 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 28115 < new pts 30120, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 29650 < new pts 30120, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 29669 < new pts 30120, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 29745 < new pts 30120, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 29796 < new pts 30120, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 29839 < new pts 30120, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 30018 < new pts 30120, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30119 + pts count: 1 = new pts: 30120. update pts: 30039 < new pts 30120, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 28115 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 29670 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 29806 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 29866 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 29877 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 29910 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 29941 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 30034 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 30066 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 30092 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 30113 < new pts 30125, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30121 + pts count: 1 = new pts: 30122. update pts: 28115 < new pts 30122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30121 + pts count: 1 = new pts: 30122. update pts: 29677 < new pts 30122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30121 + pts count: 1 = new pts: 30122. update pts: 29799 < new pts 30122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30121 + pts count: 1 = new pts: 30122. update pts: 29876 < new pts 30122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30121 + pts count: 1 = new pts: 30122. update pts: 29932 < new pts 30122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30121 + pts count: 1 = new pts: 30122. update pts: 29957 < new pts 30122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30121 + pts count: 1 = new pts: 30122. update pts: 29994 < new pts 30122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30121 + pts count: 1 = new pts: 30122. update pts: 30077 < new pts 30122, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30121 + pts count: 1 = new pts: 30122. update pts: 30121 < new pts 30122, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1530623 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -Wrote 1548826 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1600194 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 28115 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 29714 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 29820 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 29888 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 29963 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 30046 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30124 + pts count: 1 = new pts: 30125. update pts: 30116 < new pts 30125, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30124 + pts count: 1 = new pts: 30125, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 28115 < new pts 30126, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 29675 < new pts 30126, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 29885 < new pts 30126, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 29959 < new pts 30126, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 29964 < new pts 30126, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 29969 < new pts 30126, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 29978 < new pts 30126, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 30037 < new pts 30126, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 30083 < new pts 30126, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1561087 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 28115 < new pts 30126, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 29650 < new pts 30126, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 29669 < new pts 30126, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 29745 < new pts 30126, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 29796 < new pts 30126, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 29839 < new pts 30126, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 30018 < new pts 30126, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30125 + pts count: 1 = new pts: 30126. update pts: 30039 < new pts 30126, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1549479 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 28115 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 29670 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 29806 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 29866 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 29877 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 29910 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 29941 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 30034 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 30066 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 30092 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 30113 < new pts 30127, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 28115 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 29677 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 29799 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 29876 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 29932 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 29957 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 29994 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 30077 < new pts 30127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30126 + pts count: 1 = new pts: 30127. update pts: 30121 < new pts 30127, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30126, pts count: 1, new pts: 30127 < update pts: 30129, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1535312 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1552840 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1604470 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30128, pts count: 1, new pts: 30129 < update pts: 30131, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1558360 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30132 + pts count: 1 = new pts: 30133. update pts: 28115 < new pts 30133, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30132 + pts count: 1 = new pts: 30133. update pts: 29675 < new pts 30133, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30132 + pts count: 1 = new pts: 30133. update pts: 29885 < new pts 30133, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30132 + pts count: 1 = new pts: 30133. update pts: 29959 < new pts 30133, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30132 + pts count: 1 = new pts: 30133. update pts: 29964 < new pts 30133, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30132 + pts count: 1 = new pts: 30133. update pts: 29969 < new pts 30133, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30132 + pts count: 1 = new pts: 30133. update pts: 29978 < new pts 30133, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30132 + pts count: 1 = new pts: 30133. update pts: 30037 < new pts 30133, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30132 + pts count: 1 = new pts: 30133. update pts: 30083 < new pts 30133, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30128 + pts count: 1 = new pts: 30129. update pts: 28115 < new pts 30129, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30128 + pts count: 1 = new pts: 30129. update pts: 29714 < new pts 30129, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30128 + pts count: 1 = new pts: 30129. update pts: 29820 < new pts 30129, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30128 + pts count: 1 = new pts: 30129. update pts: 29888 < new pts 30129, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30128 + pts count: 1 = new pts: 30129. update pts: 29963 < new pts 30129, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30128 + pts count: 1 = new pts: 30129. update pts: 30046 < new pts 30129, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30128 + pts count: 1 = new pts: 30129. update pts: 30116 < new pts 30129, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30128 + pts count: 1 = new pts: 30129. update pts: 30125 < new pts 30129, channel id: -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30129 + pts count: 1 = new pts: 30130. update pts: 28115 < new pts 30130, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30129 + pts count: 1 = new pts: 30130. update pts: 29650 < new pts 30130, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30129 + pts count: 1 = new pts: 30130. update pts: 29669 < new pts 30130, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30129 + pts count: 1 = new pts: 30130. update pts: 29745 < new pts 30130, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30129 + pts count: 1 = new pts: 30130. update pts: 29796 < new pts 30130, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30129 + pts count: 1 = new pts: 30130. update pts: 29839 < new pts 30130, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30129 + pts count: 1 = new pts: 30130. update pts: 30018 < new pts 30130, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30129 + pts count: 1 = new pts: 30130. update pts: 30039 < new pts 30130, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30130 + pts count: 1 = new pts: 30131. update pts: 28115 < new pts 30131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30130 + pts count: 1 = new pts: 30131. update pts: 29670 < new pts 30131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30130 + pts count: 1 = new pts: 30131. update pts: 29806 < new pts 30131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30130 + pts count: 1 = new pts: 30131. update pts: 29866 < new pts 30131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30130 + pts count: 1 = new pts: 30131. update pts: 29877 < new pts 30131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30130 + pts count: 1 = new pts: 30131. update pts: 29910 < new pts 30131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30130 + pts count: 1 = new pts: 30131. update pts: 29941 < new pts 30131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30130 + pts count: 1 = new pts: 30131. update pts: 30034 < new pts 30131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30130 + pts count: 1 = new pts: 30131. update pts: 30066 < new pts 30131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30130 + pts count: 1 = new pts: 30131. update pts: 30092 < new pts 30131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30130 + pts count: 1 = new pts: 30131. update pts: 30113 < new pts 30131, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30130, pts count: 1, new pts: 30131 < update pts: 30133, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1556606 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1538669 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1556294 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30133 + pts count: 1 = new pts: 30134. update pts: 28115 < new pts 30134, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30133 + pts count: 1 = new pts: 30134. update pts: 29677 < new pts 30134, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30133 + pts count: 1 = new pts: 30134. update pts: 29799 < new pts 30134, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30133 + pts count: 1 = new pts: 30134. update pts: 29876 < new pts 30134, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30133 + pts count: 1 = new pts: 30134. update pts: 29932 < new pts 30134, channel id: -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30133 + pts count: 1 = new pts: 30134. update pts: 29957 < new pts 30134, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30133 + pts count: 1 = new pts: 30134. update pts: 29994 < new pts 30134, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30133 + pts count: 1 = new pts: 30134. update pts: 30077 < new pts 30134, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30133 + pts count: 1 = new pts: 30134. update pts: 30121 < new pts 30134, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1612566 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 28115 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 29714 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 29820 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 29888 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 29963 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 30046 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 30116 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 30125 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 28115 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 29675 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 29885 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 29959 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 29964 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 29969 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 29978 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 30037 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30135 + pts count: 1 = new pts: 30136. update pts: 30083 < new pts 30136, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1565196 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30136 + pts count: 1 = new pts: 30137. update pts: 28115 < new pts 30137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30136 + pts count: 1 = new pts: 30137. update pts: 29650 < new pts 30137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30136 + pts count: 1 = new pts: 30137. update pts: 29669 < new pts 30137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30136 + pts count: 1 = new pts: 30137. update pts: 29745 < new pts 30137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30136 + pts count: 1 = new pts: 30137. update pts: 29796 < new pts 30137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30136 + pts count: 1 = new pts: 30137. update pts: 29839 < new pts 30137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30136 + pts count: 1 = new pts: 30137. update pts: 30018 < new pts 30137, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30136 + pts count: 1 = new pts: 30137. update pts: 30039 < new pts 30137, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30137, pts count: 1, new pts: 30138 < update pts: 30140, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 28115 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 29670 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 29806 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 29866 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 29877 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 29910 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 29941 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 30034 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 30066 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 30092 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 30113 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 30133 < new pts 30142, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1561104 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1540167 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1556228 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 28115 < new pts 30141, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 29677 < new pts 30141, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 29799 < new pts 30141, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 29876 < new pts 30141, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 29932 < new pts 30141, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 29957 < new pts 30141, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 29994 < new pts 30141, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 30077 < new pts 30141, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 30121 < new pts 30141, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1616331 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 28115 < new pts 30141, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 29714 < new pts 30141, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 29820 < new pts 30141, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 29888 < new pts 30141, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 29963 < new pts 30141, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 30046 < new pts 30141, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 30116 < new pts 30141, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30140 + pts count: 1 = new pts: 30141. update pts: 30125 < new pts 30141, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30140, pts count: 1, new pts: 30141 < update pts: 30146, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 28115 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received updates. -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 29675 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 29885 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 29959 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 29964 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 29969 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 29978 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 30037 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30141, pts count: 1, new pts: 30142 < update pts: 30147, channel id: -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 30083 < new pts 30142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30141 + pts count: 1 = new pts: 30142. update pts: 30141 < new pts 30142, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1571111 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 28115 < new pts 30149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 29650 < new pts 30149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 29669 < new pts 30149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 29745 < new pts 30149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 29796 < new pts 30149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 29839 < new pts 30149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 30018 < new pts 30149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 30039 < new pts 30149, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30143 + pts count: 1 = new pts: 30144. update pts: 28115 < new pts 30144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30143 + pts count: 1 = new pts: 30144. update pts: 29670 < new pts 30144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30143 + pts count: 1 = new pts: 30144. update pts: 29806 < new pts 30144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30143 + pts count: 1 = new pts: 30144. update pts: 29866 < new pts 30144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30143 + pts count: 1 = new pts: 30144. update pts: 29877 < new pts 30144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30143 + pts count: 1 = new pts: 30144. update pts: 29910 < new pts 30144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30143 + pts count: 1 = new pts: 30144. update pts: 29941 < new pts 30144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30143 + pts count: 1 = new pts: 30144. update pts: 30034 < new pts 30144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30143 + pts count: 1 = new pts: 30144. update pts: 30066 < new pts 30144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30143 + pts count: 1 = new pts: 30144. update pts: 30092 < new pts 30144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30143 + pts count: 1 = new pts: 30144. update pts: 30113 < new pts 30144, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30143 + pts count: 1 = new pts: 30144. update pts: 30133 < new pts 30144, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1565338 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1553365 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 28115 < new pts 30149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 29677 < new pts 30149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 29799 < new pts 30149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 29876 < new pts 30149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 29932 < new pts 30149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 29957 < new pts 30149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 29994 < new pts 30149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 30077 < new pts 30149, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30148 + pts count: 1 = new pts: 30149. update pts: 30121 < new pts 30149, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1564673 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1572620 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30149 + pts count: 1 = new pts: 30150. update pts: 28115 < new pts 30150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30149 + pts count: 1 = new pts: 30150. update pts: 29714 < new pts 30150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30149 + pts count: 1 = new pts: 30150. update pts: 29820 < new pts 30150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30149 + pts count: 1 = new pts: 30150. update pts: 29888 < new pts 30150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30149 + pts count: 1 = new pts: 30150. update pts: 29963 < new pts 30150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30149 + pts count: 1 = new pts: 30150. update pts: 30046 < new pts 30150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30149 + pts count: 1 = new pts: 30150. update pts: 30116 < new pts 30150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30149 + pts count: 1 = new pts: 30150. update pts: 30125 < new pts 30150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1612393 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShortMessage. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30149, pts count: 1, new pts: 30150 < update pts: 30152, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30149, pts count: 1, new pts: 30150 < update pts: 30154, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 28115 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29675 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29885 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29959 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29964 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29969 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29978 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30037 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30083 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30141 < new pts 30156, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30149 + pts count: 1 = new pts: 30150. update pts: 28115 < new pts 30150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30149 + pts count: 1 = new pts: 30150. update pts: 29650 < new pts 30150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30149 + pts count: 1 = new pts: 30150. update pts: 29669 < new pts 30150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30149 + pts count: 1 = new pts: 30150. update pts: 29745 < new pts 30150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30149 + pts count: 1 = new pts: 30150. update pts: 29796 < new pts 30150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30149 + pts count: 1 = new pts: 30150. update pts: 29839 < new pts 30150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30149 + pts count: 1 = new pts: 30150. update pts: 30018 < new pts 30150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30149 + pts count: 1 = new pts: 30150. update pts: 30039 < new pts 30150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30149 + pts count: 1 = new pts: 30150, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 28115 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29670 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29806 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29866 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29877 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29910 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29941 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30034 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30066 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30092 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30113 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30133 < new pts 30156, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1575745 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1557696 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 28115 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29677 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29799 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29876 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29932 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29957 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29994 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30077 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30121 < new pts 30156, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1563461 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1614477 bytes -AuthKeyHandler, danogentili: Calling 304401... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 28115 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29714 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29820 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29888 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29963 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30046 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30116 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30125 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30155, pts count: 1, new pts: 30156 < update pts: 30157, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 28115 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29675 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29885 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29959 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29964 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29969 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29978 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30037 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30083 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30141 < new pts 30156, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1588348 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 28115 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29650 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29669 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29745 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29796 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 29839 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30018 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30039 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30155 + pts count: 1 = new pts: 30156. update pts: 30150 < new pts 30156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30155 + pts count: 1 = new pts: 30156, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1574456 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30157 + pts count: 1 = new pts: 30158. update pts: 28115 < new pts 30158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30157 + pts count: 1 = new pts: 30158. update pts: 29670 < new pts 30158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30157 + pts count: 1 = new pts: 30158. update pts: 29806 < new pts 30158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30157 + pts count: 1 = new pts: 30158. update pts: 29866 < new pts 30158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30157 + pts count: 1 = new pts: 30158. update pts: 29877 < new pts 30158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30157 + pts count: 1 = new pts: 30158. update pts: 29910 < new pts 30158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30157 + pts count: 1 = new pts: 30158. update pts: 29941 < new pts 30158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30157 + pts count: 1 = new pts: 30158. update pts: 30034 < new pts 30158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30157 + pts count: 1 = new pts: 30158. update pts: 30066 < new pts 30158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30157 + pts count: 1 = new pts: 30158. update pts: 30092 < new pts 30158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30157 + pts count: 1 = new pts: 30158. update pts: 30113 < new pts 30158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30157 + pts count: 1 = new pts: 30158. update pts: 30133 < new pts 30158, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30157, pts count: 1, new pts: 30158 < update pts: 30161, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30159 + pts count: 1 = new pts: 30160. update pts: 28115 < new pts 30160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Duplicate update. current pts: 30159 + pts count: 1 = new pts: 30160. update pts: 29677 < new pts 30160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Duplicate update. current pts: 30159 + pts count: 1 = new pts: 30160. update pts: 29799 < new pts 30160, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30159 + pts count: 1 = new pts: 30160. update pts: 29876 < new pts 30160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30159 + pts count: 1 = new pts: 30160. update pts: 29932 < new pts 30160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30159 + pts count: 1 = new pts: 30160. update pts: 29957 < new pts 30160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30159 + pts count: 1 = new pts: 30160. update pts: 29994 < new pts 30160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30159 + pts count: 1 = new pts: 30160. update pts: 30077 < new pts 30160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30159 + pts count: 1 = new pts: 30160. update pts: 30121 < new pts 30160, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1568384 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1613273 bytes -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1570977 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30160 + pts count: 1 = new pts: 30161. update pts: 28115 < new pts 30161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30160 + pts count: 1 = new pts: 30161. update pts: 29675 < new pts 30161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30160 + pts count: 1 = new pts: 30161. update pts: 29885 < new pts 30161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30160 + pts count: 1 = new pts: 30161. update pts: 29959 < new pts 30161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30160 + pts count: 1 = new pts: 30161. update pts: 29964 < new pts 30161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30160 + pts count: 1 = new pts: 30161. update pts: 29969 < new pts 30161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30160 + pts count: 1 = new pts: 30161. update pts: 29978 < new pts 30161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30160 + pts count: 1 = new pts: 30161. update pts: 30037 < new pts 30161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30160 + pts count: 1 = new pts: 30161. update pts: 30083 < new pts 30161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30160 + pts count: 1 = new pts: 30161. update pts: 30141 < new pts 30161, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -Wrote 1591854 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30161 + pts count: 1 = new pts: 30162. update pts: 28115 < new pts 30162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30161 + pts count: 1 = new pts: 30162. update pts: 29714 < new pts 30162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30161 + pts count: 1 = new pts: 30162. update pts: 29820 < new pts 30162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30161 + pts count: 1 = new pts: 30162. update pts: 29888 < new pts 30162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30161 + pts count: 1 = new pts: 30162. update pts: 29963 < new pts 30162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30161 + pts count: 1 = new pts: 30162. update pts: 30046 < new pts 30162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30161 + pts count: 1 = new pts: 30162. update pts: 30116 < new pts 30162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30161 + pts count: 1 = new pts: 30162. update pts: 30125 < new pts 30162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30161 + pts count: 1 = new pts: 30162. update pts: 30157 < new pts 30162, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30162 + pts count: 1 = new pts: 30163. update pts: 28115 < new pts 30163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30162 + pts count: 1 = new pts: 30163. update pts: 29670 < new pts 30163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30162 + pts count: 1 = new pts: 30163. update pts: 29806 < new pts 30163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30162 + pts count: 1 = new pts: 30163. update pts: 29866 < new pts 30163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30162 + pts count: 1 = new pts: 30163. update pts: 29877 < new pts 30163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Duplicate update. current pts: 30162 + pts count: 1 = new pts: 30163. update pts: 29910 < new pts 30163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30162 + pts count: 1 = new pts: 30163. update pts: 29941 < new pts 30163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30162 + pts count: 1 = new pts: 30163. update pts: 30034 < new pts 30163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Duplicate update. current pts: 177 + pts count: 1 = new pts: 178. update pts: 177 < new pts 178, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30162 + pts count: 1 = new pts: 30163. update pts: 30066 < new pts 30163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30162 + pts count: 1 = new pts: 30163. update pts: 30092 < new pts 30163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30162 + pts count: 1 = new pts: 30163. update pts: 30113 < new pts 30163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30162 + pts count: 1 = new pts: 30163. update pts: 30133 < new pts 30163, channel id: -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1583034 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30164, pts count: 1, new pts: 30165 < update pts: 30166, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1577066 bytes -AuthKeyHandler, danogentili: Calling 13316... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30166 + pts count: 1 = new pts: 30167. update pts: 28115 < new pts 30167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30166 + pts count: 1 = new pts: 30167. update pts: 29677 < new pts 30167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30166 + pts count: 1 = new pts: 30167. update pts: 29799 < new pts 30167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30166 + pts count: 1 = new pts: 30167. update pts: 29876 < new pts 30167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30166 + pts count: 1 = new pts: 30167. update pts: 29932 < new pts 30167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30166 + pts count: 1 = new pts: 30167. update pts: 29957 < new pts 30167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30166 + pts count: 1 = new pts: 30167. update pts: 29994 < new pts 30167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30166 + pts count: 1 = new pts: 30167. update pts: 30077 < new pts 30167, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30166 + pts count: 1 = new pts: 30167. update pts: 30121 < new pts 30167, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1567810 bytes -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30165 + pts count: 1 = new pts: 30166. update pts: 28115 < new pts 30166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30165 + pts count: 1 = new pts: 30166. update pts: 29675 < new pts 30166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30165 + pts count: 1 = new pts: 30166. update pts: 29885 < new pts 30166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30165 + pts count: 1 = new pts: 30166. update pts: 29959 < new pts 30166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30165 + pts count: 1 = new pts: 30166. update pts: 29964 < new pts 30166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30165 + pts count: 1 = new pts: 30166. update pts: 29969 < new pts 30166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30165 + pts count: 1 = new pts: 30166. update pts: 29978 < new pts 30166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30165 + pts count: 1 = new pts: 30166. update pts: 30037 < new pts 30166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateDeleteChannelMessages... -UpdateHandler, danogentili: Pts hole. current pts: 167, pts count: 1, new pts: 168 < update pts: 177, channel id: 10084044 -Exception, danogentili: Undefined index: InputChannel in UpdateHandler.php:139 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30165 + pts count: 1 = new pts: 30166. update pts: 30083 < new pts 30166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30165 + pts count: 1 = new pts: 30166. update pts: 30141 < new pts 30166, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1594287 bytes -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1585663 bytes -AuthKeyHandler, danogentili: Calling 603556... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1579137 bytes -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30169 + pts count: 1 = new pts: 30170. update pts: 28115 < new pts 30170, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30169 + pts count: 1 = new pts: 30170. update pts: 29677 < new pts 30170, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30169 + pts count: 1 = new pts: 30170. update pts: 29799 < new pts 30170, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30169 + pts count: 1 = new pts: 30170. update pts: 29876 < new pts 30170, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30169 + pts count: 1 = new pts: 30170. update pts: 29932 < new pts 30170, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30169 + pts count: 1 = new pts: 30170. update pts: 29957 < new pts 30170, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30169 + pts count: 1 = new pts: 30170. update pts: 29994 < new pts 30170, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30169 + pts count: 1 = new pts: 30170. update pts: 30077 < new pts 30170, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30169 + pts count: 1 = new pts: 30170. update pts: 30121 < new pts 30170, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1588576 bytes -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30183 + pts count: 1 = new pts: 30184. update pts: 28115 < new pts 30184, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 646882 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30184 + pts count: 1 = new pts: 30185. update pts: 28115 < new pts 30185, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 652732 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30184 + pts count: 1 = new pts: 30185. update pts: 28115 < new pts 30185, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 660001 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30185 + pts count: 1 = new pts: 30186. update pts: 28115 < new pts 30186, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 670037 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30187 + pts count: 1 = new pts: 30188. update pts: 28115 < new pts 30188, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 675885 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30187 + pts count: 1 = new pts: 30188. update pts: 28115 < new pts 30188, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 681734 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30187, pts count: 1, new pts: 30188 < update pts: 30191, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30191 + pts count: 1 = new pts: 30192. update pts: 28115 < new pts 30192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30191 + pts count: 1 = new pts: 30192. update pts: 30188 < new pts 30192, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 706214 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30192, pts count: 1, new pts: 30193 < update pts: 30194, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30196 + pts count: 1 = new pts: 30197. update pts: 28115 < new pts 30197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30196 + pts count: 1 = new pts: 30197. update pts: 30188 < new pts 30197, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 720306 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30196 + pts count: 1 = new pts: 30197. update pts: 28115 < new pts 30197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30196 + pts count: 1 = new pts: 30197. update pts: 30188 < new pts 30197, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30196, pts count: 1, new pts: 30197 < update pts: 30198, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 735182 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30198 + pts count: 1 = new pts: 30199. update pts: 28115 < new pts 30199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30198 + pts count: 1 = new pts: 30199. update pts: 30188 < new pts 30199, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 745531 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30200 + pts count: 1 = new pts: 30201. update pts: 28115 < new pts 30201, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30200 + pts count: 1 = new pts: 30201. update pts: 30188 < new pts 30201, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30200, pts count: 1, new pts: 30201 < update pts: 30202, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 763065 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30202 + pts count: 1 = new pts: 30203. update pts: 28115 < new pts 30203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30202 + pts count: 1 = new pts: 30203. update pts: 30188 < new pts 30203, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 772007 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30203 + pts count: 1 = new pts: 30204. update pts: 28115 < new pts 30204, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30203 + pts count: 1 = new pts: 30204. update pts: 30188 < new pts 30204, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 786876 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30205 + pts count: 1 = new pts: 30206. update pts: 28115 < new pts 30206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30205 + pts count: 1 = new pts: 30206. update pts: 30188 < new pts 30206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 797811 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30209 + pts count: 1 = new pts: 30210. update pts: 28115 < new pts 30210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30209 + pts count: 1 = new pts: 30210. update pts: 30188 < new pts 30210, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 809555 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30210 + pts count: 1 = new pts: 30211. update pts: 28115 < new pts 30211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30210 + pts count: 1 = new pts: 30211. update pts: 30188 < new pts 30211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 820071 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30212 + pts count: 1 = new pts: 30213. update pts: 28115 < new pts 30213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30212 + pts count: 1 = new pts: 30213. update pts: 30188 < new pts 30213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30212, pts count: 1, new pts: 30213 < update pts: 30214, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 836540 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30215 + pts count: 1 = new pts: 30216, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30216 + pts count: 1 = new pts: 30217. update pts: 28115 < new pts 30217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30216 + pts count: 1 = new pts: 30217. update pts: 30188 < new pts 30217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 845702 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30216 + pts count: 1 = new pts: 30217. update pts: 28115 < new pts 30217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30216 + pts count: 1 = new pts: 30217. update pts: 30188 < new pts 30217, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 860722 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30218 + pts count: 1 = new pts: 30219. update pts: 28115 < new pts 30219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30218 + pts count: 1 = new pts: 30219. update pts: 30188 < new pts 30219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 875401 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30219 + pts count: 1 = new pts: 30220. update pts: 28115 < new pts 30220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30219 + pts count: 1 = new pts: 30220. update pts: 30188 < new pts 30220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 885918 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30221 + pts count: 1 = new pts: 30222. update pts: 28115 < new pts 30222, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30221 + pts count: 1 = new pts: 30222. update pts: 30188 < new pts 30222, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 891353 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30221 + pts count: 1 = new pts: 30222, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30222 + pts count: 1 = new pts: 30223. update pts: 28115 < new pts 30223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30222 + pts count: 1 = new pts: 30223. update pts: 30188 < new pts 30223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 896685 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30222 + pts count: 1 = new pts: 30223. update pts: 28115 < new pts 30223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30222 + pts count: 1 = new pts: 30223. update pts: 30188 < new pts 30223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 900635 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30222, pts count: 1, new pts: 30223 < update pts: 30225, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30226 + pts count: 1 = new pts: 30227. update pts: 28115 < new pts 30227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30226 + pts count: 1 = new pts: 30227. update pts: 30188 < new pts 30227, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 921366 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30227 + pts count: 1 = new pts: 30228. update pts: 28115 < new pts 30228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30227 + pts count: 1 = new pts: 30228. update pts: 30188 < new pts 30228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 926735 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30228, pts count: 1, new pts: 30229 < update pts: 30232, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30232 + pts count: 1 = new pts: 30233. update pts: 28115 < new pts 30233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30232 + pts count: 1 = new pts: 30233. update pts: 30188 < new pts 30233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30232 + pts count: 1 = new pts: 30233. update pts: 30229 < new pts 30233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30232 + pts count: 1 = new pts: 30233. update pts: 30231 < new pts 30233, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 952611 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30233 + pts count: 1 = new pts: 30234. update pts: 28115 < new pts 30234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30233 + pts count: 1 = new pts: 30234. update pts: 30188 < new pts 30234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30233 + pts count: 1 = new pts: 30234. update pts: 30229 < new pts 30234, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30233 + pts count: 1 = new pts: 30234. update pts: 30231 < new pts 30234, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 963518 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30235 + pts count: 1 = new pts: 30236. update pts: 28115 < new pts 30236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30235 + pts count: 1 = new pts: 30236. update pts: 30188 < new pts 30236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30235 + pts count: 1 = new pts: 30236. update pts: 30229 < new pts 30236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30235 + pts count: 1 = new pts: 30236. update pts: 30231 < new pts 30236, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30235 + pts count: 1 = new pts: 30236, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 972317 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30237, pts count: 1, new pts: 30238 < update pts: 30239, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30240 + pts count: 1 = new pts: 30241. update pts: 28115 < new pts 30241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30240 + pts count: 1 = new pts: 30241. update pts: 30188 < new pts 30241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30240 + pts count: 1 = new pts: 30241. update pts: 30229 < new pts 30241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30240 + pts count: 1 = new pts: 30241. update pts: 30231 < new pts 30241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30240 + pts count: 1 = new pts: 30241. update pts: 30236 < new pts 30241, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30240 + pts count: 1 = new pts: 30241. update pts: 30238 < new pts 30241, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30240 + pts count: 1 = new pts: 30241, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 985074 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30241 + pts count: 1 = new pts: 30242. update pts: 28115 < new pts 30242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30241 + pts count: 1 = new pts: 30242. update pts: 30188 < new pts 30242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30241 + pts count: 1 = new pts: 30242. update pts: 30229 < new pts 30242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30241 + pts count: 1 = new pts: 30242. update pts: 30231 < new pts 30242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30241 + pts count: 1 = new pts: 30242. update pts: 30236 < new pts 30242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30241 + pts count: 1 = new pts: 30242. update pts: 30238 < new pts 30242, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 992108 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30242 + pts count: 1 = new pts: 30243. update pts: 28115 < new pts 30243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30242 + pts count: 1 = new pts: 30243. update pts: 30188 < new pts 30243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30242 + pts count: 1 = new pts: 30243. update pts: 30229 < new pts 30243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30242 + pts count: 1 = new pts: 30243. update pts: 30231 < new pts 30243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30242 + pts count: 1 = new pts: 30243. update pts: 30236 < new pts 30243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30242 + pts count: 1 = new pts: 30243. update pts: 30238 < new pts 30243, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 999488 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30244 + pts count: 1 = new pts: 30245. update pts: 28115 < new pts 30245, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30244 + pts count: 1 = new pts: 30245. update pts: 30188 < new pts 30245, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30244 + pts count: 1 = new pts: 30245. update pts: 30229 < new pts 30245, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30244 + pts count: 1 = new pts: 30245. update pts: 30231 < new pts 30245, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30244 + pts count: 1 = new pts: 30245. update pts: 30236 < new pts 30245, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30244 + pts count: 1 = new pts: 30245. update pts: 30238 < new pts 30245, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30244 + pts count: 1 = new pts: 30245, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1001457 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30245, pts count: 1, new pts: 30246 < update pts: 30247, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30247 + pts count: 1 = new pts: 30248. update pts: 28115 < new pts 30248, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30247 + pts count: 1 = new pts: 30248. update pts: 30188 < new pts 30248, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30247 + pts count: 1 = new pts: 30248. update pts: 30229 < new pts 30248, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30247 + pts count: 1 = new pts: 30248. update pts: 30231 < new pts 30248, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30247 + pts count: 1 = new pts: 30248. update pts: 30236 < new pts 30248, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30247 + pts count: 1 = new pts: 30248. update pts: 30238 < new pts 30248, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1005969 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30248 + pts count: 1 = new pts: 30249. update pts: 28115 < new pts 30249, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30248 + pts count: 1 = new pts: 30249. update pts: 30188 < new pts 30249, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30248 + pts count: 1 = new pts: 30249. update pts: 30229 < new pts 30249, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30248 + pts count: 1 = new pts: 30249. update pts: 30231 < new pts 30249, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30248 + pts count: 1 = new pts: 30249. update pts: 30236 < new pts 30249, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30248 + pts count: 1 = new pts: 30249. update pts: 30238 < new pts 30249, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30248 + pts count: 1 = new pts: 30249, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30250 + pts count: 1 = new pts: 30251, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1006657 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30251 + pts count: 1 = new pts: 30252, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30252 + pts count: 1 = new pts: 30253, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30253 + pts count: 1 = new pts: 30254. update pts: 28115 < new pts 30254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30253 + pts count: 1 = new pts: 30254. update pts: 30188 < new pts 30254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30253 + pts count: 1 = new pts: 30254. update pts: 30229 < new pts 30254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30253 + pts count: 1 = new pts: 30254. update pts: 30231 < new pts 30254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30253 + pts count: 1 = new pts: 30254. update pts: 30236 < new pts 30254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30253 + pts count: 1 = new pts: 30254. update pts: 30238 < new pts 30254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30253 + pts count: 1 = new pts: 30254. update pts: 30249 < new pts 30254, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1011020 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30253 + pts count: 1 = new pts: 30254. update pts: 28115 < new pts 30254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30253 + pts count: 1 = new pts: 30254. update pts: 30188 < new pts 30254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30253 + pts count: 1 = new pts: 30254. update pts: 30229 < new pts 30254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30253 + pts count: 1 = new pts: 30254. update pts: 30231 < new pts 30254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30253 + pts count: 1 = new pts: 30254. update pts: 30236 < new pts 30254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30253 + pts count: 1 = new pts: 30254. update pts: 30238 < new pts 30254, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30253 + pts count: 1 = new pts: 30254. update pts: 30249 < new pts 30254, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30253 + pts count: 1 = new pts: 30254, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1013072 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30254 + pts count: 1 = new pts: 30255. update pts: 28115 < new pts 30255, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30254 + pts count: 1 = new pts: 30255. update pts: 30188 < new pts 30255, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30254 + pts count: 1 = new pts: 30255. update pts: 30229 < new pts 30255, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30254 + pts count: 1 = new pts: 30255. update pts: 30231 < new pts 30255, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30254 + pts count: 1 = new pts: 30255. update pts: 30236 < new pts 30255, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30254 + pts count: 1 = new pts: 30255. update pts: 30238 < new pts 30255, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30254 + pts count: 1 = new pts: 30255. update pts: 30249 < new pts 30255, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1014609 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30256 + pts count: 1 = new pts: 30257. update pts: 28115 < new pts 30257, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30256 + pts count: 1 = new pts: 30257. update pts: 30188 < new pts 30257, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30256 + pts count: 1 = new pts: 30257. update pts: 30229 < new pts 30257, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30256 + pts count: 1 = new pts: 30257. update pts: 30231 < new pts 30257, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30256 + pts count: 1 = new pts: 30257. update pts: 30236 < new pts 30257, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30256 + pts count: 1 = new pts: 30257. update pts: 30238 < new pts 30257, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30256 + pts count: 1 = new pts: 30257. update pts: 30249 < new pts 30257, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30256 + pts count: 1 = new pts: 30257, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1012356 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30257 + pts count: 1 = new pts: 30258. update pts: 28115 < new pts 30258, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30257 + pts count: 1 = new pts: 30258. update pts: 30188 < new pts 30258, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30257 + pts count: 1 = new pts: 30258. update pts: 30229 < new pts 30258, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30257 + pts count: 1 = new pts: 30258. update pts: 30231 < new pts 30258, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30257 + pts count: 1 = new pts: 30258. update pts: 30236 < new pts 30258, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30257 + pts count: 1 = new pts: 30258. update pts: 30238 < new pts 30258, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30257 + pts count: 1 = new pts: 30258. update pts: 30249 < new pts 30258, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1017225 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30260 + pts count: 1 = new pts: 30261. update pts: 28115 < new pts 30261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30260 + pts count: 1 = new pts: 30261. update pts: 30188 < new pts 30261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30260 + pts count: 1 = new pts: 30261. update pts: 30229 < new pts 30261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30260 + pts count: 1 = new pts: 30261. update pts: 30231 < new pts 30261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30260 + pts count: 1 = new pts: 30261. update pts: 30236 < new pts 30261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30260 + pts count: 1 = new pts: 30261. update pts: 30238 < new pts 30261, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30260 + pts count: 1 = new pts: 30261. update pts: 30249 < new pts 30261, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30260 + pts count: 1 = new pts: 30261, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1016839 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30261 + pts count: 1 = new pts: 30262. update pts: 28115 < new pts 30262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30261 + pts count: 1 = new pts: 30262. update pts: 30188 < new pts 30262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30261 + pts count: 1 = new pts: 30262. update pts: 30229 < new pts 30262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30261 + pts count: 1 = new pts: 30262. update pts: 30231 < new pts 30262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30261 + pts count: 1 = new pts: 30262. update pts: 30236 < new pts 30262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30261 + pts count: 1 = new pts: 30262. update pts: 30238 < new pts 30262, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30261 + pts count: 1 = new pts: 30262. update pts: 30249 < new pts 30262, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1021616 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30264 + pts count: 1 = new pts: 30265, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30265 + pts count: 1 = new pts: 30266. update pts: 28115 < new pts 30266, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30265 + pts count: 1 = new pts: 30266. update pts: 30188 < new pts 30266, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30265 + pts count: 1 = new pts: 30266. update pts: 30229 < new pts 30266, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30265 + pts count: 1 = new pts: 30266. update pts: 30231 < new pts 30266, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30265 + pts count: 1 = new pts: 30266. update pts: 30236 < new pts 30266, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30265 + pts count: 1 = new pts: 30266. update pts: 30238 < new pts 30266, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30265 + pts count: 1 = new pts: 30266. update pts: 30249 < new pts 30266, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1022274 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30266 + pts count: 1 = new pts: 30267. update pts: 28115 < new pts 30267, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30266 + pts count: 1 = new pts: 30267. update pts: 30188 < new pts 30267, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30266 + pts count: 1 = new pts: 30267. update pts: 30229 < new pts 30267, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30266 + pts count: 1 = new pts: 30267. update pts: 30231 < new pts 30267, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30266 + pts count: 1 = new pts: 30267. update pts: 30236 < new pts 30267, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30266 + pts count: 1 = new pts: 30267. update pts: 30238 < new pts 30267, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30266 + pts count: 1 = new pts: 30267. update pts: 30249 < new pts 30267, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1025573 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30268 + pts count: 1 = new pts: 30269. update pts: 28115 < new pts 30269, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30268 + pts count: 1 = new pts: 30269. update pts: 30188 < new pts 30269, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30268 + pts count: 1 = new pts: 30269. update pts: 30229 < new pts 30269, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30268 + pts count: 1 = new pts: 30269. update pts: 30231 < new pts 30269, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30268 + pts count: 1 = new pts: 30269. update pts: 30236 < new pts 30269, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30268 + pts count: 1 = new pts: 30269. update pts: 30238 < new pts 30269, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30268 + pts count: 1 = new pts: 30269. update pts: 30249 < new pts 30269, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30268 + pts count: 1 = new pts: 30269, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30269, pts count: 1, new pts: 30270 < update pts: 30271, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1021923 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30271 + pts count: 1 = new pts: 30272. update pts: 28115 < new pts 30272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30271 + pts count: 1 = new pts: 30272. update pts: 30188 < new pts 30272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30271 + pts count: 1 = new pts: 30272. update pts: 30229 < new pts 30272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30271 + pts count: 1 = new pts: 30272. update pts: 30231 < new pts 30272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30271 + pts count: 1 = new pts: 30272. update pts: 30236 < new pts 30272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30271 + pts count: 1 = new pts: 30272. update pts: 30238 < new pts 30272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30271 + pts count: 1 = new pts: 30272. update pts: 30249 < new pts 30272, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30271 + pts count: 1 = new pts: 30272. update pts: 30269 < new pts 30272, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30271, pts count: 1, new pts: 30272 < update pts: 30273, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1029410 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30273 + pts count: 1 = new pts: 30274, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30274 + pts count: 1 = new pts: 30275. update pts: 28115 < new pts 30275, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30274 + pts count: 1 = new pts: 30275. update pts: 30188 < new pts 30275, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30274 + pts count: 1 = new pts: 30275. update pts: 30229 < new pts 30275, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30274 + pts count: 1 = new pts: 30275. update pts: 30231 < new pts 30275, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30274 + pts count: 1 = new pts: 30275. update pts: 30236 < new pts 30275, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30274 + pts count: 1 = new pts: 30275. update pts: 30238 < new pts 30275, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30274 + pts count: 1 = new pts: 30275. update pts: 30249 < new pts 30275, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30274 + pts count: 1 = new pts: 30275. update pts: 30269 < new pts 30275, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1027792 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30275, pts count: 1, new pts: 30276 < update pts: 30277, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30277 + pts count: 1 = new pts: 30278. update pts: 28115 < new pts 30278, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30277 + pts count: 1 = new pts: 30278. update pts: 30188 < new pts 30278, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30277 + pts count: 1 = new pts: 30278. update pts: 30229 < new pts 30278, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30277 + pts count: 1 = new pts: 30278. update pts: 30231 < new pts 30278, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30277 + pts count: 1 = new pts: 30278. update pts: 30236 < new pts 30278, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30277 + pts count: 1 = new pts: 30278. update pts: 30238 < new pts 30278, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30277 + pts count: 1 = new pts: 30278. update pts: 30249 < new pts 30278, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30277 + pts count: 1 = new pts: 30278. update pts: 30269 < new pts 30278, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1030750 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30277, pts count: 1, new pts: 30278 < update pts: 30279, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30279 + pts count: 1 = new pts: 30280. update pts: 28115 < new pts 30280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30279 + pts count: 1 = new pts: 30280. update pts: 30188 < new pts 30280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30279 + pts count: 1 = new pts: 30280. update pts: 30229 < new pts 30280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30279 + pts count: 1 = new pts: 30280. update pts: 30231 < new pts 30280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30279 + pts count: 1 = new pts: 30280. update pts: 30236 < new pts 30280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30279 + pts count: 1 = new pts: 30280. update pts: 30238 < new pts 30280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30279 + pts count: 1 = new pts: 30280. update pts: 30249 < new pts 30280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30279 + pts count: 1 = new pts: 30280. update pts: 30269 < new pts 30280, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1034174 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30279 + pts count: 1 = new pts: 30280. update pts: 28115 < new pts 30280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30279 + pts count: 1 = new pts: 30280. update pts: 30188 < new pts 30280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30279 + pts count: 1 = new pts: 30280. update pts: 30229 < new pts 30280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30279 + pts count: 1 = new pts: 30280. update pts: 30231 < new pts 30280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30279 + pts count: 1 = new pts: 30280. update pts: 30236 < new pts 30280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30279 + pts count: 1 = new pts: 30280. update pts: 30238 < new pts 30280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30279 + pts count: 1 = new pts: 30280. update pts: 30249 < new pts 30280, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30279 + pts count: 1 = new pts: 30280. update pts: 30269 < new pts 30280, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1033812 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30281 + pts count: 1 = new pts: 30282. update pts: 28115 < new pts 30282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30281 + pts count: 1 = new pts: 30282. update pts: 30188 < new pts 30282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30281 + pts count: 1 = new pts: 30282. update pts: 30229 < new pts 30282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30281 + pts count: 1 = new pts: 30282. update pts: 30231 < new pts 30282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30281 + pts count: 1 = new pts: 30282. update pts: 30236 < new pts 30282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30281 + pts count: 1 = new pts: 30282. update pts: 30238 < new pts 30282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30281 + pts count: 1 = new pts: 30282. update pts: 30249 < new pts 30282, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30281 + pts count: 1 = new pts: 30282. update pts: 30269 < new pts 30282, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30282 + pts count: 1 = new pts: 30283, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1037330 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30283 + pts count: 1 = new pts: 30284. update pts: 28115 < new pts 30284, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30283 + pts count: 1 = new pts: 30284. update pts: 30188 < new pts 30284, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30283 + pts count: 1 = new pts: 30284. update pts: 30229 < new pts 30284, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30283 + pts count: 1 = new pts: 30284. update pts: 30231 < new pts 30284, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30283 + pts count: 1 = new pts: 30284. update pts: 30236 < new pts 30284, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30283 + pts count: 1 = new pts: 30284. update pts: 30238 < new pts 30284, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30283 + pts count: 1 = new pts: 30284. update pts: 30249 < new pts 30284, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30283 + pts count: 1 = new pts: 30284. update pts: 30269 < new pts 30284, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1035236 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30283 + pts count: 1 = new pts: 30284. update pts: 28115 < new pts 30284, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30283 + pts count: 1 = new pts: 30284. update pts: 30188 < new pts 30284, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30283 + pts count: 1 = new pts: 30284. update pts: 30229 < new pts 30284, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30283 + pts count: 1 = new pts: 30284. update pts: 30231 < new pts 30284, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30283 + pts count: 1 = new pts: 30284. update pts: 30236 < new pts 30284, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30283 + pts count: 1 = new pts: 30284. update pts: 30238 < new pts 30284, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30283 + pts count: 1 = new pts: 30284. update pts: 30249 < new pts 30284, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30283 + pts count: 1 = new pts: 30284. update pts: 30269 < new pts 30284, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1037189 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30286 + pts count: 1 = new pts: 30287. update pts: 28115 < new pts 30287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30286 + pts count: 1 = new pts: 30287. update pts: 30188 < new pts 30287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30286 + pts count: 1 = new pts: 30287. update pts: 30229 < new pts 30287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30286 + pts count: 1 = new pts: 30287. update pts: 30231 < new pts 30287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30286 + pts count: 1 = new pts: 30287. update pts: 30236 < new pts 30287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30286 + pts count: 1 = new pts: 30287. update pts: 30238 < new pts 30287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30286 + pts count: 1 = new pts: 30287. update pts: 30249 < new pts 30287, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30286 + pts count: 1 = new pts: 30287. update pts: 30269 < new pts 30287, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1044829 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30289 + pts count: 1 = new pts: 30290. update pts: 28115 < new pts 30290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30289 + pts count: 1 = new pts: 30290. update pts: 30188 < new pts 30290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30289 + pts count: 1 = new pts: 30290. update pts: 30229 < new pts 30290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30289 + pts count: 1 = new pts: 30290. update pts: 30231 < new pts 30290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30289 + pts count: 1 = new pts: 30290. update pts: 30236 < new pts 30290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30289 + pts count: 1 = new pts: 30290. update pts: 30238 < new pts 30290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30289 + pts count: 1 = new pts: 30290. update pts: 30249 < new pts 30290, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30289 + pts count: 1 = new pts: 30290. update pts: 30269 < new pts 30290, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1050030 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30291 + pts count: 1 = new pts: 30292. update pts: 28115 < new pts 30292, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30291 + pts count: 1 = new pts: 30292. update pts: 30188 < new pts 30292, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30291 + pts count: 1 = new pts: 30292. update pts: 30229 < new pts 30292, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30291 + pts count: 1 = new pts: 30292. update pts: 30231 < new pts 30292, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30291 + pts count: 1 = new pts: 30292. update pts: 30236 < new pts 30292, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30291 + pts count: 1 = new pts: 30292. update pts: 30238 < new pts 30292, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30291 + pts count: 1 = new pts: 30292. update pts: 30249 < new pts 30292, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30291 + pts count: 1 = new pts: 30292. update pts: 30269 < new pts 30292, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1057735 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30293 + pts count: 1 = new pts: 30294. update pts: 28115 < new pts 30294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30293 + pts count: 1 = new pts: 30294. update pts: 30188 < new pts 30294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30293 + pts count: 1 = new pts: 30294. update pts: 30229 < new pts 30294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30293 + pts count: 1 = new pts: 30294. update pts: 30231 < new pts 30294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30293 + pts count: 1 = new pts: 30294. update pts: 30236 < new pts 30294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30293 + pts count: 1 = new pts: 30294. update pts: 30238 < new pts 30294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30293 + pts count: 1 = new pts: 30294. update pts: 30249 < new pts 30294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30293 + pts count: 1 = new pts: 30294. update pts: 30269 < new pts 30294, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1055855 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30293 + pts count: 1 = new pts: 30294. update pts: 28115 < new pts 30294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30293 + pts count: 1 = new pts: 30294. update pts: 30188 < new pts 30294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30293 + pts count: 1 = new pts: 30294. update pts: 30229 < new pts 30294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30293 + pts count: 1 = new pts: 30294. update pts: 30231 < new pts 30294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30293 + pts count: 1 = new pts: 30294. update pts: 30236 < new pts 30294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30293 + pts count: 1 = new pts: 30294. update pts: 30238 < new pts 30294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30293 + pts count: 1 = new pts: 30294. update pts: 30249 < new pts 30294, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30293 + pts count: 1 = new pts: 30294. update pts: 30269 < new pts 30294, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1057879 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30296 + pts count: 1 = new pts: 30297. update pts: 28115 < new pts 30297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30296 + pts count: 1 = new pts: 30297. update pts: 30188 < new pts 30297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30296 + pts count: 1 = new pts: 30297. update pts: 30229 < new pts 30297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30296 + pts count: 1 = new pts: 30297. update pts: 30231 < new pts 30297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30296 + pts count: 1 = new pts: 30297. update pts: 30236 < new pts 30297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30296 + pts count: 1 = new pts: 30297. update pts: 30238 < new pts 30297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30296 + pts count: 1 = new pts: 30297. update pts: 30249 < new pts 30297, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30296 + pts count: 1 = new pts: 30297. update pts: 30269 < new pts 30297, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1063059 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30298 + pts count: 1 = new pts: 30299, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30299 + pts count: 1 = new pts: 30300. update pts: 28115 < new pts 30300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30299 + pts count: 1 = new pts: 30300. update pts: 30188 < new pts 30300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30299 + pts count: 1 = new pts: 30300. update pts: 30229 < new pts 30300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30299 + pts count: 1 = new pts: 30300. update pts: 30231 < new pts 30300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30299 + pts count: 1 = new pts: 30300. update pts: 30236 < new pts 30300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30299 + pts count: 1 = new pts: 30300. update pts: 30238 < new pts 30300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30299 + pts count: 1 = new pts: 30300. update pts: 30249 < new pts 30300, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30299 + pts count: 1 = new pts: 30300. update pts: 30269 < new pts 30300, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1065872 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30301 + pts count: 1 = new pts: 30302, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30302 + pts count: 1 = new pts: 30303. update pts: 28115 < new pts 30303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30302 + pts count: 1 = new pts: 30303. update pts: 30188 < new pts 30303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30302 + pts count: 1 = new pts: 30303. update pts: 30229 < new pts 30303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30302 + pts count: 1 = new pts: 30303. update pts: 30231 < new pts 30303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30302 + pts count: 1 = new pts: 30303. update pts: 30236 < new pts 30303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30302 + pts count: 1 = new pts: 30303. update pts: 30238 < new pts 30303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30302 + pts count: 1 = new pts: 30303. update pts: 30249 < new pts 30303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30302 + pts count: 1 = new pts: 30303. update pts: 30269 < new pts 30303, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30302 + pts count: 1 = new pts: 30303, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1058774 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30303 + pts count: 1 = new pts: 30304. update pts: 28115 < new pts 30304, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30303 + pts count: 1 = new pts: 30304. update pts: 30188 < new pts 30304, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30303 + pts count: 1 = new pts: 30304. update pts: 30229 < new pts 30304, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30303 + pts count: 1 = new pts: 30304. update pts: 30231 < new pts 30304, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30303 + pts count: 1 = new pts: 30304. update pts: 30236 < new pts 30304, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30303 + pts count: 1 = new pts: 30304. update pts: 30238 < new pts 30304, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30303 + pts count: 1 = new pts: 30304. update pts: 30249 < new pts 30304, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30303 + pts count: 1 = new pts: 30304. update pts: 30269 < new pts 30304, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1060389 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30304 + pts count: 1 = new pts: 30305. update pts: 28115 < new pts 30305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30304 + pts count: 1 = new pts: 30305. update pts: 30188 < new pts 30305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30304 + pts count: 1 = new pts: 30305. update pts: 30229 < new pts 30305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30304 + pts count: 1 = new pts: 30305. update pts: 30231 < new pts 30305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30304 + pts count: 1 = new pts: 30305. update pts: 30236 < new pts 30305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30304 + pts count: 1 = new pts: 30305. update pts: 30238 < new pts 30305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30304 + pts count: 1 = new pts: 30305. update pts: 30249 < new pts 30305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30304 + pts count: 1 = new pts: 30305. update pts: 30269 < new pts 30305, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1065250 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30306 + pts count: 1 = new pts: 30307, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30307 + pts count: 1 = new pts: 30308. update pts: 28115 < new pts 30308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30307 + pts count: 1 = new pts: 30308. update pts: 30188 < new pts 30308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30307 + pts count: 1 = new pts: 30308. update pts: 30229 < new pts 30308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30307 + pts count: 1 = new pts: 30308. update pts: 30231 < new pts 30308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30307 + pts count: 1 = new pts: 30308. update pts: 30236 < new pts 30308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30307 + pts count: 1 = new pts: 30308. update pts: 30238 < new pts 30308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30307 + pts count: 1 = new pts: 30308. update pts: 30249 < new pts 30308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30307 + pts count: 1 = new pts: 30308. update pts: 30269 < new pts 30308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1066005 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30307 + pts count: 1 = new pts: 30308. update pts: 28115 < new pts 30308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30307 + pts count: 1 = new pts: 30308. update pts: 30188 < new pts 30308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30307 + pts count: 1 = new pts: 30308. update pts: 30229 < new pts 30308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30307 + pts count: 1 = new pts: 30308. update pts: 30231 < new pts 30308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30307 + pts count: 1 = new pts: 30308. update pts: 30236 < new pts 30308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30307 + pts count: 1 = new pts: 30308. update pts: 30238 < new pts 30308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30307 + pts count: 1 = new pts: 30308. update pts: 30249 < new pts 30308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30307 + pts count: 1 = new pts: 30308. update pts: 30269 < new pts 30308, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30307 + pts count: 1 = new pts: 30308, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1073648 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30310 + pts count: 1 = new pts: 30311. update pts: 28115 < new pts 30311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30310 + pts count: 1 = new pts: 30311. update pts: 30188 < new pts 30311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30310 + pts count: 1 = new pts: 30311. update pts: 30229 < new pts 30311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30310 + pts count: 1 = new pts: 30311. update pts: 30231 < new pts 30311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30310 + pts count: 1 = new pts: 30311. update pts: 30236 < new pts 30311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30310 + pts count: 1 = new pts: 30311. update pts: 30238 < new pts 30311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30310 + pts count: 1 = new pts: 30311. update pts: 30249 < new pts 30311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30310 + pts count: 1 = new pts: 30311. update pts: 30269 < new pts 30311, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30310 + pts count: 1 = new pts: 30311. update pts: 30308 < new pts 30311, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1075944 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30312 + pts count: 1 = new pts: 30313. update pts: 28115 < new pts 30313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30312 + pts count: 1 = new pts: 30313. update pts: 30188 < new pts 30313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30312 + pts count: 1 = new pts: 30313. update pts: 30229 < new pts 30313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30312 + pts count: 1 = new pts: 30313. update pts: 30231 < new pts 30313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30312 + pts count: 1 = new pts: 30313. update pts: 30236 < new pts 30313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30312 + pts count: 1 = new pts: 30313. update pts: 30238 < new pts 30313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30312 + pts count: 1 = new pts: 30313. update pts: 30249 < new pts 30313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30312 + pts count: 1 = new pts: 30313. update pts: 30269 < new pts 30313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30312 + pts count: 1 = new pts: 30313. update pts: 30308 < new pts 30313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30312 + pts count: 1 = new pts: 30313, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1078748 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30315 + pts count: 1 = new pts: 30316. update pts: 28115 < new pts 30316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30315 + pts count: 1 = new pts: 30316. update pts: 30188 < new pts 30316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30315 + pts count: 1 = new pts: 30316. update pts: 30229 < new pts 30316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30315 + pts count: 1 = new pts: 30316. update pts: 30231 < new pts 30316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30315 + pts count: 1 = new pts: 30316. update pts: 30236 < new pts 30316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30315 + pts count: 1 = new pts: 30316. update pts: 30238 < new pts 30316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30315 + pts count: 1 = new pts: 30316. update pts: 30249 < new pts 30316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30315 + pts count: 1 = new pts: 30316. update pts: 30269 < new pts 30316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30315 + pts count: 1 = new pts: 30316. update pts: 30308 < new pts 30316, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30315 + pts count: 1 = new pts: 30316. update pts: 30313 < new pts 30316, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1083736 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30316 + pts count: 1 = new pts: 30317. update pts: 28115 < new pts 30317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30316 + pts count: 1 = new pts: 30317. update pts: 30188 < new pts 30317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30316 + pts count: 1 = new pts: 30317. update pts: 30229 < new pts 30317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30316 + pts count: 1 = new pts: 30317. update pts: 30231 < new pts 30317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30316 + pts count: 1 = new pts: 30317. update pts: 30236 < new pts 30317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30316 + pts count: 1 = new pts: 30317. update pts: 30238 < new pts 30317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30316 + pts count: 1 = new pts: 30317. update pts: 30249 < new pts 30317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30316 + pts count: 1 = new pts: 30317. update pts: 30269 < new pts 30317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30316 + pts count: 1 = new pts: 30317. update pts: 30308 < new pts 30317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30316 + pts count: 1 = new pts: 30317. update pts: 30313 < new pts 30317, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1089329 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30318 + pts count: 1 = new pts: 30319. update pts: 28115 < new pts 30319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30318 + pts count: 1 = new pts: 30319. update pts: 30188 < new pts 30319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30318 + pts count: 1 = new pts: 30319. update pts: 30229 < new pts 30319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30318 + pts count: 1 = new pts: 30319. update pts: 30231 < new pts 30319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30318 + pts count: 1 = new pts: 30319. update pts: 30236 < new pts 30319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30318 + pts count: 1 = new pts: 30319. update pts: 30238 < new pts 30319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30318 + pts count: 1 = new pts: 30319. update pts: 30249 < new pts 30319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30318 + pts count: 1 = new pts: 30319. update pts: 30269 < new pts 30319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30318 + pts count: 1 = new pts: 30319. update pts: 30308 < new pts 30319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30318 + pts count: 1 = new pts: 30319. update pts: 30313 < new pts 30319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30318 + pts count: 1 = new pts: 30319, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30320 + pts count: 1 = new pts: 30321, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1091778 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30321 + pts count: 1 = new pts: 30322, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30322 + pts count: 1 = new pts: 30323. update pts: 28115 < new pts 30323, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30322 + pts count: 1 = new pts: 30323. update pts: 30188 < new pts 30323, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30322 + pts count: 1 = new pts: 30323. update pts: 30229 < new pts 30323, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30322 + pts count: 1 = new pts: 30323. update pts: 30231 < new pts 30323, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30322 + pts count: 1 = new pts: 30323. update pts: 30236 < new pts 30323, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30322 + pts count: 1 = new pts: 30323. update pts: 30238 < new pts 30323, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30322 + pts count: 1 = new pts: 30323. update pts: 30249 < new pts 30323, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30322 + pts count: 1 = new pts: 30323. update pts: 30269 < new pts 30323, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30322 + pts count: 1 = new pts: 30323. update pts: 30308 < new pts 30323, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30322 + pts count: 1 = new pts: 30323. update pts: 30313 < new pts 30323, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30322 + pts count: 1 = new pts: 30323. update pts: 30319 < new pts 30323, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1093970 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30323 + pts count: 1 = new pts: 30324. update pts: 28115 < new pts 30324, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30323 + pts count: 1 = new pts: 30324. update pts: 30188 < new pts 30324, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30323 + pts count: 1 = new pts: 30324. update pts: 30229 < new pts 30324, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30323 + pts count: 1 = new pts: 30324. update pts: 30231 < new pts 30324, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30323 + pts count: 1 = new pts: 30324. update pts: 30236 < new pts 30324, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30323 + pts count: 1 = new pts: 30324. update pts: 30238 < new pts 30324, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30323 + pts count: 1 = new pts: 30324. update pts: 30249 < new pts 30324, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30323 + pts count: 1 = new pts: 30324. update pts: 30269 < new pts 30324, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30323 + pts count: 1 = new pts: 30324. update pts: 30308 < new pts 30324, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30323 + pts count: 1 = new pts: 30324. update pts: 30313 < new pts 30324, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30323 + pts count: 1 = new pts: 30324. update pts: 30319 < new pts 30324, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1094832 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30323, pts count: 1, new pts: 30324 < update pts: 30326, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 28115 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30188 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30229 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30231 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30236 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30238 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30249 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30269 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30308 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30313 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30319 < new pts 30327, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1094862 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 28115 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30188 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30229 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30231 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30236 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30238 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30249 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30269 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30308 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30313 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30326 + pts count: 1 = new pts: 30327. update pts: 30319 < new pts 30327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30326 + pts count: 1 = new pts: 30327, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1103470 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30329 + pts count: 1 = new pts: 30330, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30330 + pts count: 1 = new pts: 30331. update pts: 28115 < new pts 30331, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30330 + pts count: 1 = new pts: 30331. update pts: 30188 < new pts 30331, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30330 + pts count: 1 = new pts: 30331. update pts: 30229 < new pts 30331, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30330 + pts count: 1 = new pts: 30331. update pts: 30231 < new pts 30331, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30330 + pts count: 1 = new pts: 30331. update pts: 30236 < new pts 30331, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30330 + pts count: 1 = new pts: 30331. update pts: 30238 < new pts 30331, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30330 + pts count: 1 = new pts: 30331. update pts: 30249 < new pts 30331, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30330 + pts count: 1 = new pts: 30331. update pts: 30269 < new pts 30331, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30330 + pts count: 1 = new pts: 30331. update pts: 30308 < new pts 30331, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30330 + pts count: 1 = new pts: 30331. update pts: 30313 < new pts 30331, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30330 + pts count: 1 = new pts: 30331. update pts: 30319 < new pts 30331, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30330 + pts count: 1 = new pts: 30331. update pts: 30327 < new pts 30331, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30330 + pts count: 1 = new pts: 30331, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1102952 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30331 + pts count: 1 = new pts: 30332. update pts: 28115 < new pts 30332, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30331 + pts count: 1 = new pts: 30332. update pts: 30188 < new pts 30332, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30331 + pts count: 1 = new pts: 30332. update pts: 30229 < new pts 30332, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30331 + pts count: 1 = new pts: 30332. update pts: 30231 < new pts 30332, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30331 + pts count: 1 = new pts: 30332. update pts: 30236 < new pts 30332, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30331 + pts count: 1 = new pts: 30332. update pts: 30238 < new pts 30332, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30331 + pts count: 1 = new pts: 30332. update pts: 30249 < new pts 30332, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30331 + pts count: 1 = new pts: 30332. update pts: 30269 < new pts 30332, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30331 + pts count: 1 = new pts: 30332. update pts: 30308 < new pts 30332, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30331 + pts count: 1 = new pts: 30332. update pts: 30313 < new pts 30332, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30331 + pts count: 1 = new pts: 30332. update pts: 30319 < new pts 30332, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30331 + pts count: 1 = new pts: 30332. update pts: 30327 < new pts 30332, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30331 + pts count: 1 = new pts: 30332, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1106082 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30333 + pts count: 1 = new pts: 30334. update pts: 28115 < new pts 30334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30333 + pts count: 1 = new pts: 30334. update pts: 30188 < new pts 30334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30333 + pts count: 1 = new pts: 30334. update pts: 30229 < new pts 30334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30333 + pts count: 1 = new pts: 30334. update pts: 30231 < new pts 30334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30333 + pts count: 1 = new pts: 30334. update pts: 30236 < new pts 30334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30333 + pts count: 1 = new pts: 30334. update pts: 30238 < new pts 30334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30333 + pts count: 1 = new pts: 30334. update pts: 30249 < new pts 30334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30333 + pts count: 1 = new pts: 30334. update pts: 30269 < new pts 30334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30333 + pts count: 1 = new pts: 30334. update pts: 30308 < new pts 30334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30333 + pts count: 1 = new pts: 30334. update pts: 30313 < new pts 30334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30333 + pts count: 1 = new pts: 30334. update pts: 30319 < new pts 30334, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30333 + pts count: 1 = new pts: 30334. update pts: 30327 < new pts 30334, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1106971 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30334 + pts count: 1 = new pts: 30335. update pts: 28115 < new pts 30335, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30334 + pts count: 1 = new pts: 30335. update pts: 30188 < new pts 30335, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30334 + pts count: 1 = new pts: 30335. update pts: 30229 < new pts 30335, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30334 + pts count: 1 = new pts: 30335. update pts: 30231 < new pts 30335, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30334 + pts count: 1 = new pts: 30335. update pts: 30236 < new pts 30335, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30334 + pts count: 1 = new pts: 30335. update pts: 30238 < new pts 30335, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30334 + pts count: 1 = new pts: 30335. update pts: 30249 < new pts 30335, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30334 + pts count: 1 = new pts: 30335. update pts: 30269 < new pts 30335, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30334 + pts count: 1 = new pts: 30335. update pts: 30308 < new pts 30335, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30334 + pts count: 1 = new pts: 30335. update pts: 30313 < new pts 30335, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30334 + pts count: 1 = new pts: 30335. update pts: 30319 < new pts 30335, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30334 + pts count: 1 = new pts: 30335. update pts: 30327 < new pts 30335, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30334 + pts count: 1 = new pts: 30335, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1110641 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30337 + pts count: 1 = new pts: 30338, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30338 + pts count: 1 = new pts: 30339. update pts: 28115 < new pts 30339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30338 + pts count: 1 = new pts: 30339. update pts: 30188 < new pts 30339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30338 + pts count: 1 = new pts: 30339. update pts: 30229 < new pts 30339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30338 + pts count: 1 = new pts: 30339. update pts: 30231 < new pts 30339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30338 + pts count: 1 = new pts: 30339. update pts: 30236 < new pts 30339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30338 + pts count: 1 = new pts: 30339. update pts: 30238 < new pts 30339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30338 + pts count: 1 = new pts: 30339. update pts: 30249 < new pts 30339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30338 + pts count: 1 = new pts: 30339. update pts: 30269 < new pts 30339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30338 + pts count: 1 = new pts: 30339. update pts: 30308 < new pts 30339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30338 + pts count: 1 = new pts: 30339. update pts: 30313 < new pts 30339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30338 + pts count: 1 = new pts: 30339. update pts: 30319 < new pts 30339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30338 + pts count: 1 = new pts: 30339. update pts: 30327 < new pts 30339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30338 + pts count: 1 = new pts: 30339. update pts: 30335 < new pts 30339, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30338 + pts count: 1 = new pts: 30339. update pts: 30337 < new pts 30339, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1110840 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30339 + pts count: 1 = new pts: 30340. update pts: 28115 < new pts 30340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30339 + pts count: 1 = new pts: 30340. update pts: 30188 < new pts 30340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30339 + pts count: 1 = new pts: 30340. update pts: 30229 < new pts 30340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30339 + pts count: 1 = new pts: 30340. update pts: 30231 < new pts 30340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30339 + pts count: 1 = new pts: 30340. update pts: 30236 < new pts 30340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30339 + pts count: 1 = new pts: 30340. update pts: 30238 < new pts 30340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30339 + pts count: 1 = new pts: 30340. update pts: 30249 < new pts 30340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30339 + pts count: 1 = new pts: 30340. update pts: 30269 < new pts 30340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30339 + pts count: 1 = new pts: 30340. update pts: 30308 < new pts 30340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30339 + pts count: 1 = new pts: 30340. update pts: 30313 < new pts 30340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30339 + pts count: 1 = new pts: 30340. update pts: 30319 < new pts 30340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30339 + pts count: 1 = new pts: 30340. update pts: 30327 < new pts 30340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30339 + pts count: 1 = new pts: 30340. update pts: 30335 < new pts 30340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30339 + pts count: 1 = new pts: 30340. update pts: 30337 < new pts 30340, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1116264 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30341 + pts count: 1 = new pts: 30342. update pts: 28115 < new pts 30342, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30341 + pts count: 1 = new pts: 30342. update pts: 30188 < new pts 30342, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30341 + pts count: 1 = new pts: 30342. update pts: 30229 < new pts 30342, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30341 + pts count: 1 = new pts: 30342. update pts: 30231 < new pts 30342, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30341 + pts count: 1 = new pts: 30342. update pts: 30236 < new pts 30342, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30341 + pts count: 1 = new pts: 30342. update pts: 30238 < new pts 30342, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30341 + pts count: 1 = new pts: 30342. update pts: 30249 < new pts 30342, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30341 + pts count: 1 = new pts: 30342. update pts: 30269 < new pts 30342, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30341 + pts count: 1 = new pts: 30342. update pts: 30308 < new pts 30342, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30341 + pts count: 1 = new pts: 30342. update pts: 30313 < new pts 30342, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30341 + pts count: 1 = new pts: 30342. update pts: 30319 < new pts 30342, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30341 + pts count: 1 = new pts: 30342. update pts: 30327 < new pts 30342, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30341 + pts count: 1 = new pts: 30342. update pts: 30335 < new pts 30342, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30341 + pts count: 1 = new pts: 30342. update pts: 30337 < new pts 30342, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30342 + pts count: 1 = new pts: 30343, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1116414 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30343 + pts count: 1 = new pts: 30344. update pts: 28115 < new pts 30344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30343 + pts count: 1 = new pts: 30344. update pts: 30188 < new pts 30344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30343 + pts count: 1 = new pts: 30344. update pts: 30229 < new pts 30344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30343 + pts count: 1 = new pts: 30344. update pts: 30231 < new pts 30344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30343 + pts count: 1 = new pts: 30344. update pts: 30236 < new pts 30344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30343 + pts count: 1 = new pts: 30344. update pts: 30238 < new pts 30344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30343 + pts count: 1 = new pts: 30344. update pts: 30249 < new pts 30344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30343 + pts count: 1 = new pts: 30344. update pts: 30269 < new pts 30344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30343 + pts count: 1 = new pts: 30344. update pts: 30308 < new pts 30344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30343 + pts count: 1 = new pts: 30344. update pts: 30313 < new pts 30344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30343 + pts count: 1 = new pts: 30344. update pts: 30319 < new pts 30344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30343 + pts count: 1 = new pts: 30344. update pts: 30327 < new pts 30344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30343 + pts count: 1 = new pts: 30344. update pts: 30335 < new pts 30344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30343 + pts count: 1 = new pts: 30344. update pts: 30337 < new pts 30344, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30343, pts count: 1, new pts: 30344 < update pts: 30345, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1117700 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30345 + pts count: 1 = new pts: 30346. update pts: 28115 < new pts 30346, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30345 + pts count: 1 = new pts: 30346. update pts: 30188 < new pts 30346, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30345 + pts count: 1 = new pts: 30346. update pts: 30229 < new pts 30346, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30345 + pts count: 1 = new pts: 30346. update pts: 30231 < new pts 30346, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30345 + pts count: 1 = new pts: 30346. update pts: 30236 < new pts 30346, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30345 + pts count: 1 = new pts: 30346. update pts: 30238 < new pts 30346, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30345 + pts count: 1 = new pts: 30346. update pts: 30249 < new pts 30346, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30345 + pts count: 1 = new pts: 30346. update pts: 30269 < new pts 30346, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30345 + pts count: 1 = new pts: 30346. update pts: 30308 < new pts 30346, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30345 + pts count: 1 = new pts: 30346. update pts: 30313 < new pts 30346, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30345 + pts count: 1 = new pts: 30346. update pts: 30319 < new pts 30346, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30345 + pts count: 1 = new pts: 30346. update pts: 30327 < new pts 30346, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30345 + pts count: 1 = new pts: 30346. update pts: 30335 < new pts 30346, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30345 + pts count: 1 = new pts: 30346. update pts: 30337 < new pts 30346, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1116463 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30347 + pts count: 1 = new pts: 30348. update pts: 28115 < new pts 30348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30347 + pts count: 1 = new pts: 30348. update pts: 30188 < new pts 30348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30347 + pts count: 1 = new pts: 30348. update pts: 30229 < new pts 30348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30347 + pts count: 1 = new pts: 30348. update pts: 30231 < new pts 30348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30347 + pts count: 1 = new pts: 30348. update pts: 30236 < new pts 30348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30347 + pts count: 1 = new pts: 30348. update pts: 30238 < new pts 30348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30347 + pts count: 1 = new pts: 30348. update pts: 30249 < new pts 30348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30347 + pts count: 1 = new pts: 30348. update pts: 30269 < new pts 30348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30347 + pts count: 1 = new pts: 30348. update pts: 30308 < new pts 30348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30347 + pts count: 1 = new pts: 30348. update pts: 30313 < new pts 30348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30347 + pts count: 1 = new pts: 30348. update pts: 30319 < new pts 30348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30347 + pts count: 1 = new pts: 30348. update pts: 30327 < new pts 30348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30347 + pts count: 1 = new pts: 30348. update pts: 30335 < new pts 30348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30347 + pts count: 1 = new pts: 30348. update pts: 30337 < new pts 30348, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30348 + pts count: 1 = new pts: 30349, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1122318 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30349 + pts count: 1 = new pts: 30350. update pts: 28115 < new pts 30350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30349 + pts count: 1 = new pts: 30350. update pts: 30188 < new pts 30350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30349 + pts count: 1 = new pts: 30350. update pts: 30229 < new pts 30350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30349 + pts count: 1 = new pts: 30350. update pts: 30231 < new pts 30350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30349 + pts count: 1 = new pts: 30350. update pts: 30236 < new pts 30350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30349 + pts count: 1 = new pts: 30350. update pts: 30238 < new pts 30350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30349 + pts count: 1 = new pts: 30350. update pts: 30249 < new pts 30350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30349 + pts count: 1 = new pts: 30350. update pts: 30269 < new pts 30350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30349 + pts count: 1 = new pts: 30350. update pts: 30308 < new pts 30350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30349 + pts count: 1 = new pts: 30350. update pts: 30313 < new pts 30350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30349 + pts count: 1 = new pts: 30350. update pts: 30319 < new pts 30350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30349 + pts count: 1 = new pts: 30350. update pts: 30327 < new pts 30350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30349 + pts count: 1 = new pts: 30350. update pts: 30335 < new pts 30350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30349 + pts count: 1 = new pts: 30350. update pts: 30337 < new pts 30350, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1126023 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30351 + pts count: 1 = new pts: 30352. update pts: 28115 < new pts 30352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30351 + pts count: 1 = new pts: 30352. update pts: 30188 < new pts 30352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30351 + pts count: 1 = new pts: 30352. update pts: 30229 < new pts 30352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30351 + pts count: 1 = new pts: 30352. update pts: 30231 < new pts 30352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30351 + pts count: 1 = new pts: 30352. update pts: 30236 < new pts 30352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30351 + pts count: 1 = new pts: 30352. update pts: 30238 < new pts 30352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30351 + pts count: 1 = new pts: 30352. update pts: 30249 < new pts 30352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30351 + pts count: 1 = new pts: 30352. update pts: 30269 < new pts 30352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30351 + pts count: 1 = new pts: 30352. update pts: 30308 < new pts 30352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30351 + pts count: 1 = new pts: 30352. update pts: 30313 < new pts 30352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30351 + pts count: 1 = new pts: 30352. update pts: 30319 < new pts 30352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30351 + pts count: 1 = new pts: 30352. update pts: 30327 < new pts 30352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30351 + pts count: 1 = new pts: 30352. update pts: 30335 < new pts 30352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30351 + pts count: 1 = new pts: 30352. update pts: 30337 < new pts 30352, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1128884 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30353 + pts count: 1 = new pts: 30354. update pts: 28115 < new pts 30354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30353 + pts count: 1 = new pts: 30354. update pts: 30188 < new pts 30354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30353 + pts count: 1 = new pts: 30354. update pts: 30229 < new pts 30354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30353 + pts count: 1 = new pts: 30354. update pts: 30231 < new pts 30354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30353 + pts count: 1 = new pts: 30354. update pts: 30236 < new pts 30354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30353 + pts count: 1 = new pts: 30354. update pts: 30238 < new pts 30354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30353 + pts count: 1 = new pts: 30354. update pts: 30249 < new pts 30354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30353 + pts count: 1 = new pts: 30354. update pts: 30269 < new pts 30354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30353 + pts count: 1 = new pts: 30354. update pts: 30308 < new pts 30354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30353 + pts count: 1 = new pts: 30354. update pts: 30313 < new pts 30354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30353 + pts count: 1 = new pts: 30354. update pts: 30319 < new pts 30354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30353 + pts count: 1 = new pts: 30354. update pts: 30327 < new pts 30354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30353 + pts count: 1 = new pts: 30354. update pts: 30335 < new pts 30354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30353 + pts count: 1 = new pts: 30354. update pts: 30337 < new pts 30354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30353, pts count: 1, new pts: 30354 < update pts: 30355, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1128449 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30355 + pts count: 1 = new pts: 30356. update pts: 28115 < new pts 30356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30355 + pts count: 1 = new pts: 30356. update pts: 30188 < new pts 30356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30355 + pts count: 1 = new pts: 30356. update pts: 30229 < new pts 30356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30355 + pts count: 1 = new pts: 30356. update pts: 30231 < new pts 30356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30355 + pts count: 1 = new pts: 30356. update pts: 30236 < new pts 30356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30355 + pts count: 1 = new pts: 30356. update pts: 30238 < new pts 30356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30355 + pts count: 1 = new pts: 30356. update pts: 30249 < new pts 30356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30355 + pts count: 1 = new pts: 30356. update pts: 30269 < new pts 30356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30355 + pts count: 1 = new pts: 30356. update pts: 30308 < new pts 30356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30355 + pts count: 1 = new pts: 30356. update pts: 30313 < new pts 30356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30355 + pts count: 1 = new pts: 30356. update pts: 30319 < new pts 30356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30355 + pts count: 1 = new pts: 30356. update pts: 30327 < new pts 30356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30355 + pts count: 1 = new pts: 30356. update pts: 30335 < new pts 30356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30355 + pts count: 1 = new pts: 30356. update pts: 30337 < new pts 30356, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1129348 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30357 + pts count: 1 = new pts: 30358. update pts: 28115 < new pts 30358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30357 + pts count: 1 = new pts: 30358. update pts: 30188 < new pts 30358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30357 + pts count: 1 = new pts: 30358. update pts: 30229 < new pts 30358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30357 + pts count: 1 = new pts: 30358. update pts: 30231 < new pts 30358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30357 + pts count: 1 = new pts: 30358. update pts: 30236 < new pts 30358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30357 + pts count: 1 = new pts: 30358. update pts: 30238 < new pts 30358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30357 + pts count: 1 = new pts: 30358. update pts: 30249 < new pts 30358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30357 + pts count: 1 = new pts: 30358. update pts: 30269 < new pts 30358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30357 + pts count: 1 = new pts: 30358. update pts: 30308 < new pts 30358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30357 + pts count: 1 = new pts: 30358. update pts: 30313 < new pts 30358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30357 + pts count: 1 = new pts: 30358. update pts: 30319 < new pts 30358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30357 + pts count: 1 = new pts: 30358. update pts: 30327 < new pts 30358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30357 + pts count: 1 = new pts: 30358. update pts: 30335 < new pts 30358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30357 + pts count: 1 = new pts: 30358. update pts: 30337 < new pts 30358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30357, pts count: 1, new pts: 30358 < update pts: 30359, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1132033 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30359 + pts count: 1 = new pts: 30360, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30360 + pts count: 1 = new pts: 30361. update pts: 28115 < new pts 30361, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30360 + pts count: 1 = new pts: 30361. update pts: 30188 < new pts 30361, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30360 + pts count: 1 = new pts: 30361. update pts: 30229 < new pts 30361, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30360 + pts count: 1 = new pts: 30361. update pts: 30231 < new pts 30361, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30360 + pts count: 1 = new pts: 30361. update pts: 30236 < new pts 30361, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30360 + pts count: 1 = new pts: 30361. update pts: 30238 < new pts 30361, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30360 + pts count: 1 = new pts: 30361. update pts: 30249 < new pts 30361, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30360 + pts count: 1 = new pts: 30361. update pts: 30269 < new pts 30361, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30360 + pts count: 1 = new pts: 30361. update pts: 30308 < new pts 30361, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30360 + pts count: 1 = new pts: 30361. update pts: 30313 < new pts 30361, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30360 + pts count: 1 = new pts: 30361. update pts: 30319 < new pts 30361, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30360 + pts count: 1 = new pts: 30361. update pts: 30327 < new pts 30361, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30360 + pts count: 1 = new pts: 30361. update pts: 30335 < new pts 30361, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30360 + pts count: 1 = new pts: 30361. update pts: 30337 < new pts 30361, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1130017 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30361 + pts count: 1 = new pts: 30362, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30362 + pts count: 1 = new pts: 30363. update pts: 28115 < new pts 30363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30362 + pts count: 1 = new pts: 30363. update pts: 30188 < new pts 30363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30362 + pts count: 1 = new pts: 30363. update pts: 30229 < new pts 30363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30362 + pts count: 1 = new pts: 30363. update pts: 30231 < new pts 30363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30362 + pts count: 1 = new pts: 30363. update pts: 30236 < new pts 30363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30362 + pts count: 1 = new pts: 30363. update pts: 30238 < new pts 30363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30362 + pts count: 1 = new pts: 30363. update pts: 30249 < new pts 30363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30362 + pts count: 1 = new pts: 30363. update pts: 30269 < new pts 30363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30362 + pts count: 1 = new pts: 30363. update pts: 30308 < new pts 30363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30362 + pts count: 1 = new pts: 30363. update pts: 30313 < new pts 30363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30362 + pts count: 1 = new pts: 30363. update pts: 30319 < new pts 30363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30362 + pts count: 1 = new pts: 30363. update pts: 30327 < new pts 30363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30362 + pts count: 1 = new pts: 30363. update pts: 30335 < new pts 30363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30362 + pts count: 1 = new pts: 30363. update pts: 30337 < new pts 30363, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1132542 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShortMessage. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30364 + pts count: 1 = new pts: 30365. update pts: 28115 < new pts 30365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30364 + pts count: 1 = new pts: 30365. update pts: 30188 < new pts 30365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30364 + pts count: 1 = new pts: 30365. update pts: 30229 < new pts 30365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30364 + pts count: 1 = new pts: 30365. update pts: 30231 < new pts 30365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30364 + pts count: 1 = new pts: 30365. update pts: 30236 < new pts 30365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30364 + pts count: 1 = new pts: 30365. update pts: 30238 < new pts 30365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30364 + pts count: 1 = new pts: 30365. update pts: 30249 < new pts 30365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30364 + pts count: 1 = new pts: 30365. update pts: 30269 < new pts 30365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30364 + pts count: 1 = new pts: 30365. update pts: 30308 < new pts 30365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30364 + pts count: 1 = new pts: 30365. update pts: 30313 < new pts 30365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30364 + pts count: 1 = new pts: 30365. update pts: 30319 < new pts 30365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30364 + pts count: 1 = new pts: 30365. update pts: 30327 < new pts 30365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30364 + pts count: 1 = new pts: 30365. update pts: 30335 < new pts 30365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30364 + pts count: 1 = new pts: 30365. update pts: 30337 < new pts 30365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30364 + pts count: 1 = new pts: 30365. update pts: 30364 < new pts 30365, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1133884 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30366 + pts count: 1 = new pts: 30367. update pts: 28115 < new pts 30367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30366 + pts count: 1 = new pts: 30367. update pts: 30188 < new pts 30367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30366 + pts count: 1 = new pts: 30367. update pts: 30229 < new pts 30367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30366 + pts count: 1 = new pts: 30367. update pts: 30231 < new pts 30367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30366 + pts count: 1 = new pts: 30367. update pts: 30236 < new pts 30367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30366 + pts count: 1 = new pts: 30367. update pts: 30238 < new pts 30367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30366 + pts count: 1 = new pts: 30367. update pts: 30249 < new pts 30367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30366 + pts count: 1 = new pts: 30367. update pts: 30269 < new pts 30367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30366 + pts count: 1 = new pts: 30367. update pts: 30308 < new pts 30367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30366 + pts count: 1 = new pts: 30367. update pts: 30313 < new pts 30367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30366 + pts count: 1 = new pts: 30367. update pts: 30319 < new pts 30367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30366 + pts count: 1 = new pts: 30367. update pts: 30327 < new pts 30367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30366 + pts count: 1 = new pts: 30367. update pts: 30335 < new pts 30367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30366 + pts count: 1 = new pts: 30367. update pts: 30337 < new pts 30367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30366 + pts count: 1 = new pts: 30367. update pts: 30364 < new pts 30367, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1138071 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30368 + pts count: 1 = new pts: 30369. update pts: 28115 < new pts 30369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30368 + pts count: 1 = new pts: 30369. update pts: 30188 < new pts 30369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30368 + pts count: 1 = new pts: 30369. update pts: 30229 < new pts 30369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30368 + pts count: 1 = new pts: 30369. update pts: 30231 < new pts 30369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30368 + pts count: 1 = new pts: 30369. update pts: 30236 < new pts 30369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30368 + pts count: 1 = new pts: 30369. update pts: 30238 < new pts 30369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30368 + pts count: 1 = new pts: 30369. update pts: 30249 < new pts 30369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30368 + pts count: 1 = new pts: 30369. update pts: 30269 < new pts 30369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30368 + pts count: 1 = new pts: 30369. update pts: 30308 < new pts 30369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30368 + pts count: 1 = new pts: 30369. update pts: 30313 < new pts 30369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30368 + pts count: 1 = new pts: 30369. update pts: 30319 < new pts 30369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30368 + pts count: 1 = new pts: 30369. update pts: 30327 < new pts 30369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30368 + pts count: 1 = new pts: 30369. update pts: 30335 < new pts 30369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30368 + pts count: 1 = new pts: 30369. update pts: 30337 < new pts 30369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30368 + pts count: 1 = new pts: 30369. update pts: 30364 < new pts 30369, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1144135 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30370 + pts count: 1 = new pts: 30371. update pts: 28115 < new pts 30371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30370 + pts count: 1 = new pts: 30371. update pts: 30188 < new pts 30371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30370 + pts count: 1 = new pts: 30371. update pts: 30229 < new pts 30371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30370 + pts count: 1 = new pts: 30371. update pts: 30231 < new pts 30371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30370 + pts count: 1 = new pts: 30371. update pts: 30236 < new pts 30371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30370 + pts count: 1 = new pts: 30371. update pts: 30238 < new pts 30371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30370 + pts count: 1 = new pts: 30371. update pts: 30249 < new pts 30371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30370 + pts count: 1 = new pts: 30371. update pts: 30269 < new pts 30371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30370 + pts count: 1 = new pts: 30371. update pts: 30308 < new pts 30371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30370 + pts count: 1 = new pts: 30371. update pts: 30313 < new pts 30371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30370 + pts count: 1 = new pts: 30371. update pts: 30319 < new pts 30371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30370 + pts count: 1 = new pts: 30371. update pts: 30327 < new pts 30371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30370 + pts count: 1 = new pts: 30371. update pts: 30335 < new pts 30371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30370 + pts count: 1 = new pts: 30371. update pts: 30337 < new pts 30371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30370 + pts count: 1 = new pts: 30371. update pts: 30364 < new pts 30371, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30371 + pts count: 1 = new pts: 30372, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1147157 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30372 + pts count: 1 = new pts: 30373. update pts: 28115 < new pts 30373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30372 + pts count: 1 = new pts: 30373. update pts: 30188 < new pts 30373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30372 + pts count: 1 = new pts: 30373. update pts: 30229 < new pts 30373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30372 + pts count: 1 = new pts: 30373. update pts: 30231 < new pts 30373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30372 + pts count: 1 = new pts: 30373. update pts: 30236 < new pts 30373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30372 + pts count: 1 = new pts: 30373. update pts: 30238 < new pts 30373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30372 + pts count: 1 = new pts: 30373. update pts: 30249 < new pts 30373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30372 + pts count: 1 = new pts: 30373. update pts: 30269 < new pts 30373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30372 + pts count: 1 = new pts: 30373. update pts: 30308 < new pts 30373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30372 + pts count: 1 = new pts: 30373. update pts: 30313 < new pts 30373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30372 + pts count: 1 = new pts: 30373. update pts: 30319 < new pts 30373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30372 + pts count: 1 = new pts: 30373. update pts: 30327 < new pts 30373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30372 + pts count: 1 = new pts: 30373. update pts: 30335 < new pts 30373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30372 + pts count: 1 = new pts: 30373. update pts: 30337 < new pts 30373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30372 + pts count: 1 = new pts: 30373. update pts: 30364 < new pts 30373, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1150364 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30373 + pts count: 1 = new pts: 30374, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30374 + pts count: 1 = new pts: 30375. update pts: 28115 < new pts 30375, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30374 + pts count: 1 = new pts: 30375. update pts: 30188 < new pts 30375, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30374 + pts count: 1 = new pts: 30375. update pts: 30229 < new pts 30375, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30374 + pts count: 1 = new pts: 30375. update pts: 30231 < new pts 30375, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30374 + pts count: 1 = new pts: 30375. update pts: 30236 < new pts 30375, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30374 + pts count: 1 = new pts: 30375. update pts: 30238 < new pts 30375, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30374 + pts count: 1 = new pts: 30375. update pts: 30249 < new pts 30375, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30374 + pts count: 1 = new pts: 30375. update pts: 30269 < new pts 30375, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30374 + pts count: 1 = new pts: 30375. update pts: 30308 < new pts 30375, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30374 + pts count: 1 = new pts: 30375. update pts: 30313 < new pts 30375, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30374 + pts count: 1 = new pts: 30375. update pts: 30319 < new pts 30375, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30374 + pts count: 1 = new pts: 30375. update pts: 30327 < new pts 30375, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30374 + pts count: 1 = new pts: 30375. update pts: 30335 < new pts 30375, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30374 + pts count: 1 = new pts: 30375. update pts: 30337 < new pts 30375, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30374 + pts count: 1 = new pts: 30375. update pts: 30364 < new pts 30375, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1153087 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30376, pts count: 1, new pts: 30377 < update pts: 30378, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 28115 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30188 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30229 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30231 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30236 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30238 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30249 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30269 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30308 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30313 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30319 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30327 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30335 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30337 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30364 < new pts 30379, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1150019 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 28115 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30188 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30229 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30231 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30236 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30238 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30249 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30269 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30308 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30313 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30319 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30327 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30335 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30337 < new pts 30379, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30378 + pts count: 1 = new pts: 30379. update pts: 30364 < new pts 30379, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1153907 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30380 + pts count: 1 = new pts: 30381, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30381 + pts count: 1 = new pts: 30382. update pts: 28115 < new pts 30382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30381 + pts count: 1 = new pts: 30382. update pts: 30188 < new pts 30382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30381 + pts count: 1 = new pts: 30382. update pts: 30229 < new pts 30382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30381 + pts count: 1 = new pts: 30382. update pts: 30231 < new pts 30382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30381 + pts count: 1 = new pts: 30382. update pts: 30236 < new pts 30382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30381 + pts count: 1 = new pts: 30382. update pts: 30238 < new pts 30382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30381 + pts count: 1 = new pts: 30382. update pts: 30249 < new pts 30382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30381 + pts count: 1 = new pts: 30382. update pts: 30269 < new pts 30382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30381 + pts count: 1 = new pts: 30382. update pts: 30308 < new pts 30382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30381 + pts count: 1 = new pts: 30382. update pts: 30313 < new pts 30382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30381 + pts count: 1 = new pts: 30382. update pts: 30319 < new pts 30382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30381 + pts count: 1 = new pts: 30382. update pts: 30327 < new pts 30382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30381 + pts count: 1 = new pts: 30382. update pts: 30335 < new pts 30382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30381 + pts count: 1 = new pts: 30382. update pts: 30337 < new pts 30382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30381 + pts count: 1 = new pts: 30382. update pts: 30364 < new pts 30382, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1152067 bytes -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30406 + pts count: 1 = new pts: 30407. update pts: 28115 < new pts 30407, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 648185 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30407 + pts count: 1 = new pts: 30408. update pts: 28115 < new pts 30408, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 654672 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30408 + pts count: 1 = new pts: 30409. update pts: 28115 < new pts 30409, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 665081 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30409 + pts count: 1 = new pts: 30410. update pts: 28115 < new pts 30410, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 675485 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30410 + pts count: 1 = new pts: 30411. update pts: 28115 < new pts 30411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30410 + pts count: 1 = new pts: 30411, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 686924 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30412 + pts count: 1 = new pts: 30413. update pts: 28115 < new pts 30413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30412 + pts count: 1 = new pts: 30413. update pts: 30411 < new pts 30413, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 696101 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30414 + pts count: 1 = new pts: 30415, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30415 + pts count: 1 = new pts: 30416. update pts: 28115 < new pts 30416, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30415 + pts count: 1 = new pts: 30416. update pts: 30411 < new pts 30416, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 702299 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30415, pts count: 1, new pts: 30416 < update pts: 30417, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30417 + pts count: 1 = new pts: 30418. update pts: 28115 < new pts 30418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30417 + pts count: 1 = new pts: 30418. update pts: 30411 < new pts 30418, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 717060 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30418 + pts count: 1 = new pts: 30419. update pts: 28115 < new pts 30419, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30418 + pts count: 1 = new pts: 30419. update pts: 30411 < new pts 30419, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 728491 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30420 + pts count: 1 = new pts: 30421. update pts: 28115 < new pts 30421, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30420 + pts count: 1 = new pts: 30421. update pts: 30411 < new pts 30421, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 742463 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30422 + pts count: 1 = new pts: 30423, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30423 + pts count: 1 = new pts: 30424. update pts: 28115 < new pts 30424, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30423 + pts count: 1 = new pts: 30424. update pts: 30411 < new pts 30424, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 756155 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30424 + pts count: 1 = new pts: 30425, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30425 + pts count: 1 = new pts: 30426. update pts: 28115 < new pts 30426, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30425 + pts count: 1 = new pts: 30426. update pts: 30411 < new pts 30426, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 768157 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30426 + pts count: 1 = new pts: 30427, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30427 + pts count: 1 = new pts: 30428. update pts: 28115 < new pts 30428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30427 + pts count: 1 = new pts: 30428. update pts: 30411 < new pts 30428, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 774370 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30427 + pts count: 1 = new pts: 30428. update pts: 28115 < new pts 30428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30427 + pts count: 1 = new pts: 30428. update pts: 30411 < new pts 30428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30427 + pts count: 1 = new pts: 30428, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 785611 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30429 + pts count: 1 = new pts: 30430. update pts: 28115 < new pts 30430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30429 + pts count: 1 = new pts: 30430. update pts: 30411 < new pts 30430, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30429 + pts count: 1 = new pts: 30430. update pts: 30428 < new pts 30430, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30429, pts count: 1, new pts: 30430 < update pts: 30431, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 808226 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30432 + pts count: 1 = new pts: 30433. update pts: 28115 < new pts 30433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30432 + pts count: 1 = new pts: 30433. update pts: 30411 < new pts 30433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30432 + pts count: 1 = new pts: 30433. update pts: 30428 < new pts 30433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 815503 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30433, pts count: 1, new pts: 30434 < update pts: 30435, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30435 + pts count: 1 = new pts: 30436. update pts: 28115 < new pts 30436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30435 + pts count: 1 = new pts: 30436. update pts: 30411 < new pts 30436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30435 + pts count: 1 = new pts: 30436. update pts: 30428 < new pts 30436, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 832953 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30436 + pts count: 1 = new pts: 30437, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30437 + pts count: 1 = new pts: 30438. update pts: 28115 < new pts 30438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30437 + pts count: 1 = new pts: 30438. update pts: 30411 < new pts 30438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30437 + pts count: 1 = new pts: 30438. update pts: 30428 < new pts 30438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 845087 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30438 + pts count: 1 = new pts: 30439. update pts: 28115 < new pts 30439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30438 + pts count: 1 = new pts: 30439. update pts: 30411 < new pts 30439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30438 + pts count: 1 = new pts: 30439. update pts: 30428 < new pts 30439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 859201 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30440 + pts count: 1 = new pts: 30441, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30441 + pts count: 1 = new pts: 30442. update pts: 28115 < new pts 30442, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30441 + pts count: 1 = new pts: 30442. update pts: 30411 < new pts 30442, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30441 + pts count: 1 = new pts: 30442. update pts: 30428 < new pts 30442, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 868229 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30442 + pts count: 1 = new pts: 30443. update pts: 28115 < new pts 30443, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30442 + pts count: 1 = new pts: 30443. update pts: 30411 < new pts 30443, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30442 + pts count: 1 = new pts: 30443. update pts: 30428 < new pts 30443, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30442 + pts count: 1 = new pts: 30443. update pts: 30442 < new pts 30443, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 885999 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30444 + pts count: 1 = new pts: 30445. update pts: 28115 < new pts 30445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30444 + pts count: 1 = new pts: 30445. update pts: 30411 < new pts 30445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30444 + pts count: 1 = new pts: 30445. update pts: 30428 < new pts 30445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30444 + pts count: 1 = new pts: 30445. update pts: 30442 < new pts 30445, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 895292 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30446 + pts count: 1 = new pts: 30447. update pts: 28115 < new pts 30447, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30446 + pts count: 1 = new pts: 30447. update pts: 30411 < new pts 30447, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30446 + pts count: 1 = new pts: 30447. update pts: 30428 < new pts 30447, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30446 + pts count: 1 = new pts: 30447. update pts: 30442 < new pts 30447, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30446 + pts count: 1 = new pts: 30447, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 900411 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30447 + pts count: 1 = new pts: 30448, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30448 + pts count: 1 = new pts: 30449. update pts: 28115 < new pts 30449, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30448 + pts count: 1 = new pts: 30449. update pts: 30411 < new pts 30449, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30448 + pts count: 1 = new pts: 30449. update pts: 30428 < new pts 30449, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30448 + pts count: 1 = new pts: 30449. update pts: 30442 < new pts 30449, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 907550 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30449 + pts count: 1 = new pts: 30450. update pts: 28115 < new pts 30450, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30449 + pts count: 1 = new pts: 30450. update pts: 30411 < new pts 30450, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30449 + pts count: 1 = new pts: 30450. update pts: 30428 < new pts 30450, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30449 + pts count: 1 = new pts: 30450. update pts: 30442 < new pts 30450, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 914118 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30451, pts count: 1, new pts: 30452 < update pts: 30453, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30453 + pts count: 1 = new pts: 30454. update pts: 28115 < new pts 30454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30453 + pts count: 1 = new pts: 30454. update pts: 30411 < new pts 30454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30453 + pts count: 1 = new pts: 30454. update pts: 30428 < new pts 30454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30453 + pts count: 1 = new pts: 30454. update pts: 30442 < new pts 30454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30453 + pts count: 1 = new pts: 30454. update pts: 30452 < new pts 30454, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 933207 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30454 + pts count: 1 = new pts: 30455, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 28115 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30411 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30428 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30442 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30452 < new pts 30456, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 937301 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 28115 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30411 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30428 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30442 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30452 < new pts 30456, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 940830 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 28115 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30411 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30428 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30442 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30452 < new pts 30456, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 944845 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 28115 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30411 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30428 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30442 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30452 < new pts 30456, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 948377 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 28115 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30411 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30428 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30442 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30452 < new pts 30456, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 951909 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 28115 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30411 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30428 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30442 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30452 < new pts 30456, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 955496 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 28115 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30411 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30428 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30442 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30452 < new pts 30456, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 959082 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 28115 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30411 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30428 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30442 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30452 < new pts 30456, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 963109 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 28115 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30411 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30428 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30442 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30452 < new pts 30456, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 966396 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 28115 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30411 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30428 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30442 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30452 < new pts 30456, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 966627 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 28115 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30411 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30428 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30442 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30452 < new pts 30456, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 966671 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 28115 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30411 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30428 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30442 < new pts 30456, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30455 + pts count: 1 = new pts: 30456. update pts: 30452 < new pts 30456, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 968688 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 28115 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30411 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30428 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30442 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30452 < new pts 30457, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 965836 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 28115 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30411 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30428 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30442 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30452 < new pts 30457, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 964817 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 28115 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30411 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30428 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30442 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30452 < new pts 30457, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 963465 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 28115 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30411 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30428 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30442 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30452 < new pts 30457, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 962099 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 28115 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30411 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30428 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30442 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30452 < new pts 30457, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 960050 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 28115 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30411 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30428 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30442 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30452 < new pts 30457, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 961478 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 28115 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30411 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30428 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30442 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30452 < new pts 30457, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 959941 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 28115 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30411 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30428 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30442 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30452 < new pts 30457, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 958521 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 28115 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30411 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30428 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30442 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30452 < new pts 30457, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 954817 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 28115 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30411 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30428 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30442 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30452 < new pts 30457, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 953035 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 28115 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30411 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30428 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30442 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30452 < new pts 30457, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 951307 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 28115 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30411 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30428 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30442 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30452 < new pts 30457, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 950409 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 28115 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30411 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30428 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30442 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30456 + pts count: 1 = new pts: 30457. update pts: 30452 < new pts 30457, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 949444 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30456 + pts count: 1 = new pts: 30457, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30457 + pts count: 1 = new pts: 30458. update pts: 28115 < new pts 30458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30457 + pts count: 1 = new pts: 30458. update pts: 30411 < new pts 30458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30457 + pts count: 1 = new pts: 30458. update pts: 30428 < new pts 30458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30457 + pts count: 1 = new pts: 30458. update pts: 30442 < new pts 30458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30457 + pts count: 1 = new pts: 30458. update pts: 30452 < new pts 30458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 961800 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30461 + pts count: 1 = new pts: 30462. update pts: 28115 < new pts 30462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30461 + pts count: 1 = new pts: 30462. update pts: 30411 < new pts 30462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30461 + pts count: 1 = new pts: 30462. update pts: 30428 < new pts 30462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30461 + pts count: 1 = new pts: 30462. update pts: 30442 < new pts 30462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30461 + pts count: 1 = new pts: 30462. update pts: 30452 < new pts 30462, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 970935 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30466 + pts count: 1 = new pts: 30467. update pts: 28115 < new pts 30467, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30466 + pts count: 1 = new pts: 30467. update pts: 30411 < new pts 30467, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30466 + pts count: 1 = new pts: 30467. update pts: 30428 < new pts 30467, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30466 + pts count: 1 = new pts: 30467. update pts: 30442 < new pts 30467, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30466 + pts count: 1 = new pts: 30467. update pts: 30452 < new pts 30467, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 974894 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30470, pts count: 1, new pts: 30471 < update pts: 30474, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30474 + pts count: 1 = new pts: 30475. update pts: 28115 < new pts 30475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30474 + pts count: 1 = new pts: 30475. update pts: 30411 < new pts 30475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30474 + pts count: 1 = new pts: 30475. update pts: 30428 < new pts 30475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30474 + pts count: 1 = new pts: 30475. update pts: 30442 < new pts 30475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30474 + pts count: 1 = new pts: 30475. update pts: 30452 < new pts 30475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30474 + pts count: 1 = new pts: 30475. update pts: 30470 < new pts 30475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30474 + pts count: 1 = new pts: 30475. update pts: 30471 < new pts 30475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30474 + pts count: 1 = new pts: 30475. update pts: 30473 < new pts 30475, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 993012 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30475, pts count: 1, new pts: 30476 < update pts: 30478, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30480 + pts count: 1 = new pts: 30481. update pts: 28115 < new pts 30481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30480 + pts count: 1 = new pts: 30481. update pts: 30411 < new pts 30481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30480 + pts count: 1 = new pts: 30481. update pts: 30428 < new pts 30481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30480 + pts count: 1 = new pts: 30481. update pts: 30442 < new pts 30481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30480 + pts count: 1 = new pts: 30481. update pts: 30452 < new pts 30481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30480 + pts count: 1 = new pts: 30481. update pts: 30470 < new pts 30481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30480 + pts count: 1 = new pts: 30481. update pts: 30471 < new pts 30481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30480 + pts count: 1 = new pts: 30481. update pts: 30473 < new pts 30481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30480 + pts count: 1 = new pts: 30481. update pts: 30475 < new pts 30481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30480 + pts count: 1 = new pts: 30481. update pts: 30476 < new pts 30481, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1008903 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30481 + pts count: 1 = new pts: 30482. update pts: 28115 < new pts 30482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30481 + pts count: 1 = new pts: 30482. update pts: 30411 < new pts 30482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30481 + pts count: 1 = new pts: 30482. update pts: 30428 < new pts 30482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30481 + pts count: 1 = new pts: 30482. update pts: 30442 < new pts 30482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30481 + pts count: 1 = new pts: 30482. update pts: 30452 < new pts 30482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30481 + pts count: 1 = new pts: 30482. update pts: 30470 < new pts 30482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30481 + pts count: 1 = new pts: 30482. update pts: 30471 < new pts 30482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30481 + pts count: 1 = new pts: 30482. update pts: 30473 < new pts 30482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30481 + pts count: 1 = new pts: 30482. update pts: 30475 < new pts 30482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30481 + pts count: 1 = new pts: 30482. update pts: 30476 < new pts 30482, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1015925 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30485 + pts count: 1 = new pts: 30486. update pts: 28115 < new pts 30486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30485 + pts count: 1 = new pts: 30486. update pts: 30411 < new pts 30486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30485 + pts count: 1 = new pts: 30486. update pts: 30428 < new pts 30486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30485 + pts count: 1 = new pts: 30486. update pts: 30442 < new pts 30486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30485 + pts count: 1 = new pts: 30486. update pts: 30452 < new pts 30486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30485 + pts count: 1 = new pts: 30486. update pts: 30470 < new pts 30486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30485 + pts count: 1 = new pts: 30486. update pts: 30471 < new pts 30486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30485 + pts count: 1 = new pts: 30486. update pts: 30473 < new pts 30486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30485 + pts count: 1 = new pts: 30486. update pts: 30475 < new pts 30486, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30485 + pts count: 1 = new pts: 30486. update pts: 30476 < new pts 30486, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1021576 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30489 + pts count: 1 = new pts: 30490. update pts: 28115 < new pts 30490, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30489 + pts count: 1 = new pts: 30490. update pts: 30411 < new pts 30490, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30489 + pts count: 1 = new pts: 30490. update pts: 30428 < new pts 30490, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30489 + pts count: 1 = new pts: 30490. update pts: 30442 < new pts 30490, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30489 + pts count: 1 = new pts: 30490. update pts: 30452 < new pts 30490, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30489 + pts count: 1 = new pts: 30490. update pts: 30470 < new pts 30490, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30489 + pts count: 1 = new pts: 30490. update pts: 30471 < new pts 30490, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30489 + pts count: 1 = new pts: 30490. update pts: 30473 < new pts 30490, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30489 + pts count: 1 = new pts: 30490. update pts: 30475 < new pts 30490, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30489 + pts count: 1 = new pts: 30490. update pts: 30476 < new pts 30490, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1022387 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30490 + pts count: 1 = new pts: 30491. update pts: 28115 < new pts 30491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30490 + pts count: 1 = new pts: 30491. update pts: 30411 < new pts 30491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30490 + pts count: 1 = new pts: 30491. update pts: 30428 < new pts 30491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30490 + pts count: 1 = new pts: 30491. update pts: 30442 < new pts 30491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30490 + pts count: 1 = new pts: 30491. update pts: 30452 < new pts 30491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30490 + pts count: 1 = new pts: 30491. update pts: 30470 < new pts 30491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30490 + pts count: 1 = new pts: 30491. update pts: 30471 < new pts 30491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30490 + pts count: 1 = new pts: 30491. update pts: 30473 < new pts 30491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30490 + pts count: 1 = new pts: 30491. update pts: 30475 < new pts 30491, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30490 + pts count: 1 = new pts: 30491. update pts: 30476 < new pts 30491, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1023405 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30491 + pts count: 1 = new pts: 30492. update pts: 28115 < new pts 30492, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30491 + pts count: 1 = new pts: 30492. update pts: 30411 < new pts 30492, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30491 + pts count: 1 = new pts: 30492. update pts: 30428 < new pts 30492, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30491 + pts count: 1 = new pts: 30492. update pts: 30442 < new pts 30492, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30491 + pts count: 1 = new pts: 30492. update pts: 30452 < new pts 30492, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30491 + pts count: 1 = new pts: 30492. update pts: 30470 < new pts 30492, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30491 + pts count: 1 = new pts: 30492. update pts: 30471 < new pts 30492, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30491 + pts count: 1 = new pts: 30492. update pts: 30473 < new pts 30492, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30491 + pts count: 1 = new pts: 30492. update pts: 30475 < new pts 30492, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30491 + pts count: 1 = new pts: 30492. update pts: 30476 < new pts 30492, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1027759 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 28115 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30411 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30428 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30442 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30452 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30470 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30471 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30473 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30475 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30476 < new pts 30493, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1026298 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 28115 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30411 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30428 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30442 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30452 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30470 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30471 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30473 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30475 < new pts 30493, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30492 + pts count: 1 = new pts: 30493. update pts: 30476 < new pts 30493, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1027762 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30493 + pts count: 1 = new pts: 30494. update pts: 28115 < new pts 30494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30493 + pts count: 1 = new pts: 30494. update pts: 30411 < new pts 30494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30493 + pts count: 1 = new pts: 30494. update pts: 30428 < new pts 30494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30493 + pts count: 1 = new pts: 30494. update pts: 30442 < new pts 30494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30493 + pts count: 1 = new pts: 30494. update pts: 30452 < new pts 30494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30493 + pts count: 1 = new pts: 30494. update pts: 30470 < new pts 30494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30493 + pts count: 1 = new pts: 30494. update pts: 30471 < new pts 30494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30493 + pts count: 1 = new pts: 30494. update pts: 30473 < new pts 30494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30493 + pts count: 1 = new pts: 30494. update pts: 30475 < new pts 30494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30493 + pts count: 1 = new pts: 30494. update pts: 30476 < new pts 30494, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30493 + pts count: 1 = new pts: 30494, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1030831 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30494 + pts count: 1 = new pts: 30495. update pts: 28115 < new pts 30495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30494 + pts count: 1 = new pts: 30495. update pts: 30411 < new pts 30495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30494 + pts count: 1 = new pts: 30495. update pts: 30428 < new pts 30495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30494 + pts count: 1 = new pts: 30495. update pts: 30442 < new pts 30495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30494 + pts count: 1 = new pts: 30495. update pts: 30452 < new pts 30495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30494 + pts count: 1 = new pts: 30495. update pts: 30470 < new pts 30495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30494 + pts count: 1 = new pts: 30495. update pts: 30471 < new pts 30495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30494 + pts count: 1 = new pts: 30495. update pts: 30473 < new pts 30495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30494 + pts count: 1 = new pts: 30495. update pts: 30475 < new pts 30495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30494 + pts count: 1 = new pts: 30495. update pts: 30476 < new pts 30495, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30494 + pts count: 1 = new pts: 30495. update pts: 30494 < new pts 30495, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1030138 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30495 + pts count: 1 = new pts: 30496. update pts: 28115 < new pts 30496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30495 + pts count: 1 = new pts: 30496. update pts: 30411 < new pts 30496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30495 + pts count: 1 = new pts: 30496. update pts: 30428 < new pts 30496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30495 + pts count: 1 = new pts: 30496. update pts: 30442 < new pts 30496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30495 + pts count: 1 = new pts: 30496. update pts: 30452 < new pts 30496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30495 + pts count: 1 = new pts: 30496. update pts: 30470 < new pts 30496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30495 + pts count: 1 = new pts: 30496. update pts: 30471 < new pts 30496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30495 + pts count: 1 = new pts: 30496. update pts: 30473 < new pts 30496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30495 + pts count: 1 = new pts: 30496. update pts: 30475 < new pts 30496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30495 + pts count: 1 = new pts: 30496. update pts: 30476 < new pts 30496, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30495 + pts count: 1 = new pts: 30496. update pts: 30494 < new pts 30496, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1033245 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30496 + pts count: 1 = new pts: 30497. update pts: 28115 < new pts 30497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30496 + pts count: 1 = new pts: 30497. update pts: 30411 < new pts 30497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30496 + pts count: 1 = new pts: 30497. update pts: 30428 < new pts 30497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30496 + pts count: 1 = new pts: 30497. update pts: 30442 < new pts 30497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30496 + pts count: 1 = new pts: 30497. update pts: 30452 < new pts 30497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30496 + pts count: 1 = new pts: 30497. update pts: 30470 < new pts 30497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30496 + pts count: 1 = new pts: 30497. update pts: 30471 < new pts 30497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30496 + pts count: 1 = new pts: 30497. update pts: 30473 < new pts 30497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30496 + pts count: 1 = new pts: 30497. update pts: 30475 < new pts 30497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30496 + pts count: 1 = new pts: 30497. update pts: 30476 < new pts 30497, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30496 + pts count: 1 = new pts: 30497. update pts: 30494 < new pts 30497, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1036978 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30497, pts count: 1, new pts: 30498 < update pts: 30499, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30499 + pts count: 1 = new pts: 30500. update pts: 28115 < new pts 30500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30499 + pts count: 1 = new pts: 30500. update pts: 30411 < new pts 30500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30499 + pts count: 1 = new pts: 30500. update pts: 30428 < new pts 30500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30499 + pts count: 1 = new pts: 30500. update pts: 30442 < new pts 30500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30499 + pts count: 1 = new pts: 30500. update pts: 30452 < new pts 30500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30499 + pts count: 1 = new pts: 30500. update pts: 30470 < new pts 30500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30499 + pts count: 1 = new pts: 30500. update pts: 30471 < new pts 30500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30499 + pts count: 1 = new pts: 30500. update pts: 30473 < new pts 30500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30499 + pts count: 1 = new pts: 30500. update pts: 30475 < new pts 30500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30499 + pts count: 1 = new pts: 30500. update pts: 30476 < new pts 30500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30499 + pts count: 1 = new pts: 30500. update pts: 30494 < new pts 30500, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30499 + pts count: 1 = new pts: 30500. update pts: 30498 < new pts 30500, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30499 + pts count: 1 = new pts: 30500, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1044310 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30500 + pts count: 1 = new pts: 30501, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30501 + pts count: 1 = new pts: 30502. update pts: 28115 < new pts 30502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30501 + pts count: 1 = new pts: 30502. update pts: 30411 < new pts 30502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30501 + pts count: 1 = new pts: 30502. update pts: 30428 < new pts 30502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30501 + pts count: 1 = new pts: 30502. update pts: 30442 < new pts 30502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30501 + pts count: 1 = new pts: 30502. update pts: 30452 < new pts 30502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30501 + pts count: 1 = new pts: 30502. update pts: 30470 < new pts 30502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30501 + pts count: 1 = new pts: 30502. update pts: 30471 < new pts 30502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30501 + pts count: 1 = new pts: 30502. update pts: 30473 < new pts 30502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30501 + pts count: 1 = new pts: 30502. update pts: 30475 < new pts 30502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30501 + pts count: 1 = new pts: 30502. update pts: 30476 < new pts 30502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30501 + pts count: 1 = new pts: 30502. update pts: 30494 < new pts 30502, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30501 + pts count: 1 = new pts: 30502. update pts: 30498 < new pts 30502, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30501 + pts count: 1 = new pts: 30502, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1047677 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30502 + pts count: 1 = new pts: 30503. update pts: 28115 < new pts 30503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30502 + pts count: 1 = new pts: 30503. update pts: 30411 < new pts 30503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30502 + pts count: 1 = new pts: 30503. update pts: 30428 < new pts 30503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30502 + pts count: 1 = new pts: 30503. update pts: 30442 < new pts 30503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30502 + pts count: 1 = new pts: 30503. update pts: 30452 < new pts 30503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30502 + pts count: 1 = new pts: 30503. update pts: 30470 < new pts 30503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30502 + pts count: 1 = new pts: 30503. update pts: 30471 < new pts 30503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30502 + pts count: 1 = new pts: 30503. update pts: 30473 < new pts 30503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30502 + pts count: 1 = new pts: 30503. update pts: 30475 < new pts 30503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30502 + pts count: 1 = new pts: 30503. update pts: 30476 < new pts 30503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30502 + pts count: 1 = new pts: 30503. update pts: 30494 < new pts 30503, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30502 + pts count: 1 = new pts: 30503. update pts: 30498 < new pts 30503, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1051406 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30503 + pts count: 1 = new pts: 30504. update pts: 28115 < new pts 30504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30503 + pts count: 1 = new pts: 30504. update pts: 30411 < new pts 30504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30503 + pts count: 1 = new pts: 30504. update pts: 30428 < new pts 30504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30503 + pts count: 1 = new pts: 30504. update pts: 30442 < new pts 30504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30503 + pts count: 1 = new pts: 30504. update pts: 30452 < new pts 30504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30503 + pts count: 1 = new pts: 30504. update pts: 30470 < new pts 30504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30503 + pts count: 1 = new pts: 30504. update pts: 30471 < new pts 30504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30503 + pts count: 1 = new pts: 30504. update pts: 30473 < new pts 30504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30503 + pts count: 1 = new pts: 30504. update pts: 30475 < new pts 30504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30503 + pts count: 1 = new pts: 30504. update pts: 30476 < new pts 30504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30503 + pts count: 1 = new pts: 30504. update pts: 30494 < new pts 30504, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30503 + pts count: 1 = new pts: 30504. update pts: 30498 < new pts 30504, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1056507 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30506 + pts count: 1 = new pts: 30507. update pts: 28115 < new pts 30507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30506 + pts count: 1 = new pts: 30507. update pts: 30411 < new pts 30507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30506 + pts count: 1 = new pts: 30507. update pts: 30428 < new pts 30507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30506 + pts count: 1 = new pts: 30507. update pts: 30442 < new pts 30507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30506 + pts count: 1 = new pts: 30507. update pts: 30452 < new pts 30507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30506 + pts count: 1 = new pts: 30507. update pts: 30470 < new pts 30507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30506 + pts count: 1 = new pts: 30507. update pts: 30471 < new pts 30507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30506 + pts count: 1 = new pts: 30507. update pts: 30473 < new pts 30507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30506 + pts count: 1 = new pts: 30507. update pts: 30475 < new pts 30507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30506 + pts count: 1 = new pts: 30507. update pts: 30476 < new pts 30507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30506 + pts count: 1 = new pts: 30507. update pts: 30494 < new pts 30507, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30506 + pts count: 1 = new pts: 30507. update pts: 30498 < new pts 30507, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30507 + pts count: 1 = new pts: 30508, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1059975 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30508 + pts count: 1 = new pts: 30509. update pts: 28115 < new pts 30509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30508 + pts count: 1 = new pts: 30509. update pts: 30411 < new pts 30509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30508 + pts count: 1 = new pts: 30509. update pts: 30428 < new pts 30509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30508 + pts count: 1 = new pts: 30509. update pts: 30442 < new pts 30509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30508 + pts count: 1 = new pts: 30509. update pts: 30452 < new pts 30509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30508 + pts count: 1 = new pts: 30509. update pts: 30470 < new pts 30509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30508 + pts count: 1 = new pts: 30509. update pts: 30471 < new pts 30509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30508 + pts count: 1 = new pts: 30509. update pts: 30473 < new pts 30509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30508 + pts count: 1 = new pts: 30509. update pts: 30475 < new pts 30509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30508 + pts count: 1 = new pts: 30509. update pts: 30476 < new pts 30509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30508 + pts count: 1 = new pts: 30509. update pts: 30494 < new pts 30509, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30508 + pts count: 1 = new pts: 30509. update pts: 30498 < new pts 30509, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1064785 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30510 + pts count: 1 = new pts: 30511, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 28115 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30411 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30428 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30442 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30452 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30470 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30471 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30473 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30475 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30476 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30494 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30498 < new pts 30512, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1068225 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 28115 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30411 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30428 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30442 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30452 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30470 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30471 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30473 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30475 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30476 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30494 < new pts 30512, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30511 + pts count: 1 = new pts: 30512. update pts: 30498 < new pts 30512, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1071108 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30513, pts count: 1, new pts: 30514 < update pts: 30515, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30515 + pts count: 1 = new pts: 30516. update pts: 28115 < new pts 30516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30515 + pts count: 1 = new pts: 30516. update pts: 30411 < new pts 30516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30515 + pts count: 1 = new pts: 30516. update pts: 30428 < new pts 30516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30515 + pts count: 1 = new pts: 30516. update pts: 30442 < new pts 30516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30515 + pts count: 1 = new pts: 30516. update pts: 30452 < new pts 30516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30515 + pts count: 1 = new pts: 30516. update pts: 30470 < new pts 30516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30515 + pts count: 1 = new pts: 30516. update pts: 30471 < new pts 30516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30515 + pts count: 1 = new pts: 30516. update pts: 30473 < new pts 30516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30515 + pts count: 1 = new pts: 30516. update pts: 30475 < new pts 30516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30515 + pts count: 1 = new pts: 30516. update pts: 30476 < new pts 30516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30515 + pts count: 1 = new pts: 30516. update pts: 30494 < new pts 30516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30515 + pts count: 1 = new pts: 30516. update pts: 30498 < new pts 30516, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30515 + pts count: 1 = new pts: 30516. update pts: 30514 < new pts 30516, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1079827 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30516 + pts count: 1 = new pts: 30517. update pts: 28115 < new pts 30517, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30516 + pts count: 1 = new pts: 30517. update pts: 30411 < new pts 30517, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30516 + pts count: 1 = new pts: 30517. update pts: 30428 < new pts 30517, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30516 + pts count: 1 = new pts: 30517. update pts: 30442 < new pts 30517, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30516 + pts count: 1 = new pts: 30517. update pts: 30452 < new pts 30517, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30516 + pts count: 1 = new pts: 30517. update pts: 30470 < new pts 30517, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30516 + pts count: 1 = new pts: 30517. update pts: 30471 < new pts 30517, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30516 + pts count: 1 = new pts: 30517. update pts: 30473 < new pts 30517, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30516 + pts count: 1 = new pts: 30517. update pts: 30475 < new pts 30517, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30516 + pts count: 1 = new pts: 30517. update pts: 30476 < new pts 30517, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30516 + pts count: 1 = new pts: 30517. update pts: 30494 < new pts 30517, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30516 + pts count: 1 = new pts: 30517. update pts: 30498 < new pts 30517, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30516 + pts count: 1 = new pts: 30517. update pts: 30514 < new pts 30517, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30517 + pts count: 1 = new pts: 30518, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1084042 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30518 + pts count: 1 = new pts: 30519. update pts: 28115 < new pts 30519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30518 + pts count: 1 = new pts: 30519. update pts: 30411 < new pts 30519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30518 + pts count: 1 = new pts: 30519. update pts: 30428 < new pts 30519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30518 + pts count: 1 = new pts: 30519. update pts: 30442 < new pts 30519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30518 + pts count: 1 = new pts: 30519. update pts: 30452 < new pts 30519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30518 + pts count: 1 = new pts: 30519. update pts: 30470 < new pts 30519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30518 + pts count: 1 = new pts: 30519. update pts: 30471 < new pts 30519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30518 + pts count: 1 = new pts: 30519. update pts: 30473 < new pts 30519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30518 + pts count: 1 = new pts: 30519. update pts: 30475 < new pts 30519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30518 + pts count: 1 = new pts: 30519. update pts: 30476 < new pts 30519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30518 + pts count: 1 = new pts: 30519. update pts: 30494 < new pts 30519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30518 + pts count: 1 = new pts: 30519. update pts: 30498 < new pts 30519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30518 + pts count: 1 = new pts: 30519. update pts: 30514 < new pts 30519, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30518 + pts count: 1 = new pts: 30519, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1089509 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30519 + pts count: 1 = new pts: 30520. update pts: 28115 < new pts 30520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30519 + pts count: 1 = new pts: 30520. update pts: 30411 < new pts 30520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30519 + pts count: 1 = new pts: 30520. update pts: 30428 < new pts 30520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30519 + pts count: 1 = new pts: 30520. update pts: 30442 < new pts 30520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30519 + pts count: 1 = new pts: 30520. update pts: 30452 < new pts 30520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30519 + pts count: 1 = new pts: 30520. update pts: 30470 < new pts 30520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30519 + pts count: 1 = new pts: 30520. update pts: 30471 < new pts 30520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30519 + pts count: 1 = new pts: 30520. update pts: 30473 < new pts 30520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30519 + pts count: 1 = new pts: 30520. update pts: 30475 < new pts 30520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30519 + pts count: 1 = new pts: 30520. update pts: 30476 < new pts 30520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30519 + pts count: 1 = new pts: 30520. update pts: 30494 < new pts 30520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30519 + pts count: 1 = new pts: 30520. update pts: 30498 < new pts 30520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30519 + pts count: 1 = new pts: 30520. update pts: 30514 < new pts 30520, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30519 + pts count: 1 = new pts: 30520. update pts: 30519 < new pts 30520, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30521 + pts count: 1 = new pts: 30522, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1094749 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30522 + pts count: 1 = new pts: 30523, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 28115 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30411 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30428 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30442 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30452 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30470 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30471 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30473 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30475 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30476 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30494 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30498 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30514 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30519 < new pts 30524, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1096513 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 28115 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30411 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30428 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30442 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30452 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30470 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30471 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30473 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30475 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30476 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30494 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30498 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30514 < new pts 30524, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30523 + pts count: 1 = new pts: 30524. update pts: 30519 < new pts 30524, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1100644 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30525 + pts count: 1 = new pts: 30526. update pts: 28115 < new pts 30526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30525 + pts count: 1 = new pts: 30526. update pts: 30411 < new pts 30526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30525 + pts count: 1 = new pts: 30526. update pts: 30428 < new pts 30526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30525 + pts count: 1 = new pts: 30526. update pts: 30442 < new pts 30526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30525 + pts count: 1 = new pts: 30526. update pts: 30452 < new pts 30526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30525 + pts count: 1 = new pts: 30526. update pts: 30470 < new pts 30526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30525 + pts count: 1 = new pts: 30526. update pts: 30471 < new pts 30526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30525 + pts count: 1 = new pts: 30526. update pts: 30473 < new pts 30526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30525 + pts count: 1 = new pts: 30526. update pts: 30475 < new pts 30526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30525 + pts count: 1 = new pts: 30526. update pts: 30476 < new pts 30526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30525 + pts count: 1 = new pts: 30526. update pts: 30494 < new pts 30526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30525 + pts count: 1 = new pts: 30526. update pts: 30498 < new pts 30526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30525 + pts count: 1 = new pts: 30526. update pts: 30514 < new pts 30526, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30525 + pts count: 1 = new pts: 30526. update pts: 30519 < new pts 30526, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30527 + pts count: 1 = new pts: 30528, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1106129 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30528 + pts count: 1 = new pts: 30529. update pts: 28115 < new pts 30529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30528 + pts count: 1 = new pts: 30529. update pts: 30411 < new pts 30529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30528 + pts count: 1 = new pts: 30529. update pts: 30428 < new pts 30529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30528 + pts count: 1 = new pts: 30529. update pts: 30442 < new pts 30529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30528 + pts count: 1 = new pts: 30529. update pts: 30452 < new pts 30529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30528 + pts count: 1 = new pts: 30529. update pts: 30470 < new pts 30529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30528 + pts count: 1 = new pts: 30529. update pts: 30471 < new pts 30529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30528 + pts count: 1 = new pts: 30529. update pts: 30473 < new pts 30529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30528 + pts count: 1 = new pts: 30529. update pts: 30475 < new pts 30529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30528 + pts count: 1 = new pts: 30529. update pts: 30476 < new pts 30529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30528 + pts count: 1 = new pts: 30529. update pts: 30494 < new pts 30529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30528 + pts count: 1 = new pts: 30529. update pts: 30498 < new pts 30529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30528 + pts count: 1 = new pts: 30529. update pts: 30514 < new pts 30529, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30528 + pts count: 1 = new pts: 30529. update pts: 30519 < new pts 30529, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1110206 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30530 + pts count: 1 = new pts: 30531. update pts: 28115 < new pts 30531, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30530 + pts count: 1 = new pts: 30531. update pts: 30411 < new pts 30531, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30530 + pts count: 1 = new pts: 30531. update pts: 30428 < new pts 30531, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30530 + pts count: 1 = new pts: 30531. update pts: 30442 < new pts 30531, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30530 + pts count: 1 = new pts: 30531. update pts: 30452 < new pts 30531, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30530 + pts count: 1 = new pts: 30531. update pts: 30470 < new pts 30531, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30530 + pts count: 1 = new pts: 30531. update pts: 30471 < new pts 30531, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30530 + pts count: 1 = new pts: 30531. update pts: 30473 < new pts 30531, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30530 + pts count: 1 = new pts: 30531. update pts: 30475 < new pts 30531, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30530 + pts count: 1 = new pts: 30531. update pts: 30476 < new pts 30531, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30530 + pts count: 1 = new pts: 30531. update pts: 30494 < new pts 30531, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30530 + pts count: 1 = new pts: 30531. update pts: 30498 < new pts 30531, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30530 + pts count: 1 = new pts: 30531. update pts: 30514 < new pts 30531, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30530 + pts count: 1 = new pts: 30531. update pts: 30519 < new pts 30531, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30530 + pts count: 1 = new pts: 30531, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1116659 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30532 + pts count: 1 = new pts: 30533. update pts: 28115 < new pts 30533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30532 + pts count: 1 = new pts: 30533. update pts: 30411 < new pts 30533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30532 + pts count: 1 = new pts: 30533. update pts: 30428 < new pts 30533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30532 + pts count: 1 = new pts: 30533. update pts: 30442 < new pts 30533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30532 + pts count: 1 = new pts: 30533. update pts: 30452 < new pts 30533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30532 + pts count: 1 = new pts: 30533. update pts: 30470 < new pts 30533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30532 + pts count: 1 = new pts: 30533. update pts: 30471 < new pts 30533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30532 + pts count: 1 = new pts: 30533. update pts: 30473 < new pts 30533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30532 + pts count: 1 = new pts: 30533. update pts: 30475 < new pts 30533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30532 + pts count: 1 = new pts: 30533. update pts: 30476 < new pts 30533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30532 + pts count: 1 = new pts: 30533. update pts: 30494 < new pts 30533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30532 + pts count: 1 = new pts: 30533. update pts: 30498 < new pts 30533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30532 + pts count: 1 = new pts: 30533. update pts: 30514 < new pts 30533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30532 + pts count: 1 = new pts: 30533. update pts: 30519 < new pts 30533, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30532 + pts count: 1 = new pts: 30533. update pts: 30531 < new pts 30533, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1120602 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30534 + pts count: 1 = new pts: 30535. update pts: 28115 < new pts 30535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30534 + pts count: 1 = new pts: 30535. update pts: 30411 < new pts 30535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30534 + pts count: 1 = new pts: 30535. update pts: 30428 < new pts 30535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30534 + pts count: 1 = new pts: 30535. update pts: 30442 < new pts 30535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30534 + pts count: 1 = new pts: 30535. update pts: 30452 < new pts 30535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30534 + pts count: 1 = new pts: 30535. update pts: 30470 < new pts 30535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30534 + pts count: 1 = new pts: 30535. update pts: 30471 < new pts 30535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30534 + pts count: 1 = new pts: 30535. update pts: 30473 < new pts 30535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30534 + pts count: 1 = new pts: 30535. update pts: 30475 < new pts 30535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30534 + pts count: 1 = new pts: 30535. update pts: 30476 < new pts 30535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30534 + pts count: 1 = new pts: 30535. update pts: 30494 < new pts 30535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30534 + pts count: 1 = new pts: 30535. update pts: 30498 < new pts 30535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30534 + pts count: 1 = new pts: 30535. update pts: 30514 < new pts 30535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30534 + pts count: 1 = new pts: 30535. update pts: 30519 < new pts 30535, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30534 + pts count: 1 = new pts: 30535. update pts: 30531 < new pts 30535, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1124509 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30536 + pts count: 1 = new pts: 30537. update pts: 28115 < new pts 30537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30536 + pts count: 1 = new pts: 30537. update pts: 30411 < new pts 30537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30536 + pts count: 1 = new pts: 30537. update pts: 30428 < new pts 30537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30536 + pts count: 1 = new pts: 30537. update pts: 30442 < new pts 30537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30536 + pts count: 1 = new pts: 30537. update pts: 30452 < new pts 30537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30536 + pts count: 1 = new pts: 30537. update pts: 30470 < new pts 30537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30536 + pts count: 1 = new pts: 30537. update pts: 30471 < new pts 30537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30536 + pts count: 1 = new pts: 30537. update pts: 30473 < new pts 30537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30536 + pts count: 1 = new pts: 30537. update pts: 30475 < new pts 30537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30536 + pts count: 1 = new pts: 30537. update pts: 30476 < new pts 30537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30536 + pts count: 1 = new pts: 30537. update pts: 30494 < new pts 30537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30536 + pts count: 1 = new pts: 30537. update pts: 30498 < new pts 30537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30536 + pts count: 1 = new pts: 30537. update pts: 30514 < new pts 30537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30536 + pts count: 1 = new pts: 30537. update pts: 30519 < new pts 30537, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30536 + pts count: 1 = new pts: 30537. update pts: 30531 < new pts 30537, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1125232 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30538 + pts count: 1 = new pts: 30539. update pts: 28115 < new pts 30539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30538 + pts count: 1 = new pts: 30539. update pts: 30411 < new pts 30539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30538 + pts count: 1 = new pts: 30539. update pts: 30428 < new pts 30539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30538 + pts count: 1 = new pts: 30539. update pts: 30442 < new pts 30539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30538 + pts count: 1 = new pts: 30539. update pts: 30452 < new pts 30539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30538 + pts count: 1 = new pts: 30539. update pts: 30470 < new pts 30539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30538 + pts count: 1 = new pts: 30539. update pts: 30471 < new pts 30539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30538 + pts count: 1 = new pts: 30539. update pts: 30473 < new pts 30539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30538 + pts count: 1 = new pts: 30539. update pts: 30475 < new pts 30539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30538 + pts count: 1 = new pts: 30539. update pts: 30476 < new pts 30539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30538 + pts count: 1 = new pts: 30539. update pts: 30494 < new pts 30539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30538 + pts count: 1 = new pts: 30539. update pts: 30498 < new pts 30539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30538 + pts count: 1 = new pts: 30539. update pts: 30514 < new pts 30539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30538 + pts count: 1 = new pts: 30539. update pts: 30519 < new pts 30539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30538 + pts count: 1 = new pts: 30539. update pts: 30531 < new pts 30539, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30538 + pts count: 1 = new pts: 30539, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1122478 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30539 + pts count: 1 = new pts: 30540, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30540 + pts count: 1 = new pts: 30541. update pts: 28115 < new pts 30541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30540 + pts count: 1 = new pts: 30541. update pts: 30411 < new pts 30541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30540 + pts count: 1 = new pts: 30541. update pts: 30428 < new pts 30541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30540 + pts count: 1 = new pts: 30541. update pts: 30442 < new pts 30541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30540 + pts count: 1 = new pts: 30541. update pts: 30452 < new pts 30541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30540 + pts count: 1 = new pts: 30541. update pts: 30470 < new pts 30541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30540 + pts count: 1 = new pts: 30541. update pts: 30471 < new pts 30541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30540 + pts count: 1 = new pts: 30541. update pts: 30473 < new pts 30541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30540 + pts count: 1 = new pts: 30541. update pts: 30475 < new pts 30541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30540 + pts count: 1 = new pts: 30541. update pts: 30476 < new pts 30541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30540 + pts count: 1 = new pts: 30541. update pts: 30494 < new pts 30541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30540 + pts count: 1 = new pts: 30541. update pts: 30498 < new pts 30541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30540 + pts count: 1 = new pts: 30541. update pts: 30514 < new pts 30541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30540 + pts count: 1 = new pts: 30541. update pts: 30519 < new pts 30541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30540 + pts count: 1 = new pts: 30541. update pts: 30531 < new pts 30541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30540 + pts count: 1 = new pts: 30541. update pts: 30539 < new pts 30541, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1119474 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30542 + pts count: 1 = new pts: 30543. update pts: 28115 < new pts 30543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30542 + pts count: 1 = new pts: 30543. update pts: 30411 < new pts 30543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30542 + pts count: 1 = new pts: 30543. update pts: 30428 < new pts 30543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30542 + pts count: 1 = new pts: 30543. update pts: 30442 < new pts 30543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30542 + pts count: 1 = new pts: 30543. update pts: 30452 < new pts 30543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30542 + pts count: 1 = new pts: 30543. update pts: 30470 < new pts 30543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30542 + pts count: 1 = new pts: 30543. update pts: 30471 < new pts 30543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30542 + pts count: 1 = new pts: 30543. update pts: 30473 < new pts 30543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30542 + pts count: 1 = new pts: 30543. update pts: 30475 < new pts 30543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30542 + pts count: 1 = new pts: 30543. update pts: 30476 < new pts 30543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30542 + pts count: 1 = new pts: 30543. update pts: 30494 < new pts 30543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30542 + pts count: 1 = new pts: 30543. update pts: 30498 < new pts 30543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30542 + pts count: 1 = new pts: 30543. update pts: 30514 < new pts 30543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30542 + pts count: 1 = new pts: 30543. update pts: 30519 < new pts 30543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30542 + pts count: 1 = new pts: 30543. update pts: 30531 < new pts 30543, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30542 + pts count: 1 = new pts: 30543. update pts: 30539 < new pts 30543, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1116899 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30543 + pts count: 1 = new pts: 30544. update pts: 28115 < new pts 30544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30543 + pts count: 1 = new pts: 30544. update pts: 30411 < new pts 30544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30543 + pts count: 1 = new pts: 30544. update pts: 30428 < new pts 30544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30543 + pts count: 1 = new pts: 30544. update pts: 30442 < new pts 30544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30543 + pts count: 1 = new pts: 30544. update pts: 30452 < new pts 30544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30543 + pts count: 1 = new pts: 30544. update pts: 30470 < new pts 30544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30543 + pts count: 1 = new pts: 30544. update pts: 30471 < new pts 30544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30543 + pts count: 1 = new pts: 30544. update pts: 30473 < new pts 30544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30543 + pts count: 1 = new pts: 30544. update pts: 30475 < new pts 30544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30543 + pts count: 1 = new pts: 30544. update pts: 30476 < new pts 30544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30543 + pts count: 1 = new pts: 30544. update pts: 30494 < new pts 30544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30543 + pts count: 1 = new pts: 30544. update pts: 30498 < new pts 30544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30543 + pts count: 1 = new pts: 30544. update pts: 30514 < new pts 30544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30543 + pts count: 1 = new pts: 30544. update pts: 30519 < new pts 30544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30543 + pts count: 1 = new pts: 30544. update pts: 30531 < new pts 30544, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30543 + pts count: 1 = new pts: 30544. update pts: 30539 < new pts 30544, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1114754 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30544 + pts count: 1 = new pts: 30545. update pts: 28115 < new pts 30545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30544 + pts count: 1 = new pts: 30545. update pts: 30411 < new pts 30545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30544 + pts count: 1 = new pts: 30545. update pts: 30428 < new pts 30545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30544 + pts count: 1 = new pts: 30545. update pts: 30442 < new pts 30545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30544 + pts count: 1 = new pts: 30545. update pts: 30452 < new pts 30545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30544 + pts count: 1 = new pts: 30545. update pts: 30470 < new pts 30545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30544 + pts count: 1 = new pts: 30545. update pts: 30471 < new pts 30545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30544 + pts count: 1 = new pts: 30545. update pts: 30473 < new pts 30545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30544 + pts count: 1 = new pts: 30545. update pts: 30475 < new pts 30545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30544 + pts count: 1 = new pts: 30545. update pts: 30476 < new pts 30545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30544 + pts count: 1 = new pts: 30545. update pts: 30494 < new pts 30545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30544 + pts count: 1 = new pts: 30545. update pts: 30498 < new pts 30545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30544 + pts count: 1 = new pts: 30545. update pts: 30514 < new pts 30545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30544 + pts count: 1 = new pts: 30545. update pts: 30519 < new pts 30545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30544 + pts count: 1 = new pts: 30545. update pts: 30531 < new pts 30545, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30544 + pts count: 1 = new pts: 30545. update pts: 30539 < new pts 30545, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1116059 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30545 + pts count: 1 = new pts: 30546. update pts: 28115 < new pts 30546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30545 + pts count: 1 = new pts: 30546. update pts: 30411 < new pts 30546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30545 + pts count: 1 = new pts: 30546. update pts: 30428 < new pts 30546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30545 + pts count: 1 = new pts: 30546. update pts: 30442 < new pts 30546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30545 + pts count: 1 = new pts: 30546. update pts: 30452 < new pts 30546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30545 + pts count: 1 = new pts: 30546. update pts: 30470 < new pts 30546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30545 + pts count: 1 = new pts: 30546. update pts: 30471 < new pts 30546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30545 + pts count: 1 = new pts: 30546. update pts: 30473 < new pts 30546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30545 + pts count: 1 = new pts: 30546. update pts: 30475 < new pts 30546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30545 + pts count: 1 = new pts: 30546. update pts: 30476 < new pts 30546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30545 + pts count: 1 = new pts: 30546. update pts: 30494 < new pts 30546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30545 + pts count: 1 = new pts: 30546. update pts: 30498 < new pts 30546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30545 + pts count: 1 = new pts: 30546. update pts: 30514 < new pts 30546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30545 + pts count: 1 = new pts: 30546. update pts: 30519 < new pts 30546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30545 + pts count: 1 = new pts: 30546. update pts: 30531 < new pts 30546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30545 + pts count: 1 = new pts: 30546. update pts: 30539 < new pts 30546, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30545 + pts count: 1 = new pts: 30546, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1114131 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 28115 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 30411 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 30428 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 30442 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 30452 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 30470 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 30471 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 30473 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 30475 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 30476 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 30494 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 30498 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 30514 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 30519 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 30531 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 30539 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30546 + pts count: 1 = new pts: 30547. update pts: 30546 < new pts 30547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30546 + pts count: 1 = new pts: 30547, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1114161 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30547 + pts count: 1 = new pts: 30548, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 28115 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30411 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30428 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30442 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30452 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30470 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30471 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30473 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30475 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30476 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30494 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30498 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30514 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30519 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30531 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30539 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30546 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30547 < new pts 30549, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1111456 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 28115 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30411 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30428 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30442 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30452 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30470 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30471 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30473 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30475 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30476 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30494 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30498 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30514 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30519 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30531 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30539 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30546 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30548 + pts count: 1 = new pts: 30549. update pts: 30547 < new pts 30549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30548 + pts count: 1 = new pts: 30549, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1110645 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 28115 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30411 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30428 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30442 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30452 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30470 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30471 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30473 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30475 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30476 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30494 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30498 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30514 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30519 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30531 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30539 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30546 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30547 < new pts 30550, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30549 + pts count: 1 = new pts: 30550. update pts: 30549 < new pts 30550, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1108957 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 28115 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30411 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30428 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30442 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30452 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30470 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30471 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30473 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30475 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30476 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30494 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30498 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30514 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30519 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30531 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30539 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30546 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30547 < new pts 30551, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30550 + pts count: 1 = new pts: 30551. update pts: 30549 < new pts 30551, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1111351 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 28115 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30411 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30428 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30442 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30452 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30470 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30471 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30473 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30475 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30476 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30494 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30498 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30514 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30519 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30531 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30539 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30546 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30547 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30549 < new pts 30553, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1107771 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 28115 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30411 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30428 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30442 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30452 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30470 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30471 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30473 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30475 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30476 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30494 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30498 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30514 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30519 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30531 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30539 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30546 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30547 < new pts 30553, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30552 + pts count: 1 = new pts: 30553. update pts: 30549 < new pts 30553, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1109128 bytes -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30559 + pts count: 1 = new pts: 30560. update pts: 28115 < new pts 30560, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 649701 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30560 + pts count: 1 = new pts: 30561. update pts: 28115 < new pts 30561, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 655550 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30560 + pts count: 1 = new pts: 30561. update pts: 28115 < new pts 30561, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 665262 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30561 + pts count: 1 = new pts: 30562. update pts: 28115 < new pts 30562, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 679893 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30562 + pts count: 1 = new pts: 30563. update pts: 28115 < new pts 30563, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30564 + pts count: 1 = new pts: 30565, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 694944 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30565 + pts count: 1 = new pts: 30566. update pts: 28115 < new pts 30566, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30566 + pts count: 1 = new pts: 30567, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 707003 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30567 + pts count: 1 = new pts: 30568. update pts: 28115 < new pts 30568, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30568 + pts count: 1 = new pts: 30569, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 723789 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30569 + pts count: 1 = new pts: 30570. update pts: 28115 < new pts 30570, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 733191 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30571 + pts count: 1 = new pts: 30572. update pts: 28115 < new pts 30572, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 742594 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30573 + pts count: 1 = new pts: 30574. update pts: 28115 < new pts 30574, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30573, pts count: 1, new pts: 30574 < update pts: 30575, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 761315 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30575 + pts count: 1 = new pts: 30576. update pts: 28115 < new pts 30576, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 770726 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30577 + pts count: 1 = new pts: 30578. update pts: 28115 < new pts 30578, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Applying pts. current pts: 181 + pts count: 1 = new pts: 182, channel id: 10084044 -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30577 + pts count: 1 = new pts: 30578, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 794906 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30579 + pts count: 1 = new pts: 30580. update pts: 28115 < new pts 30580, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 808674 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30581 + pts count: 1 = new pts: 30582. update pts: 28115 < new pts 30582, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 819262 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30583 + pts count: 1 = new pts: 30584. update pts: 28115 < new pts 30584, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 828775 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30585 + pts count: 1 = new pts: 30586. update pts: 28115 < new pts 30586, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 840589 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30586 + pts count: 1 = new pts: 30587. update pts: 28115 < new pts 30587, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 856323 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30589 + pts count: 1 = new pts: 30590, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30590 + pts count: 1 = new pts: 30591. update pts: 28115 < new pts 30591, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 866233 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30591 + pts count: 1 = new pts: 30592, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30592 + pts count: 1 = new pts: 30593. update pts: 28115 < new pts 30593, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 873058 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30592 + pts count: 1 = new pts: 30593. update pts: 28115 < new pts 30593, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30592 + pts count: 1 = new pts: 30593, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 886088 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30594 + pts count: 1 = new pts: 30595. update pts: 28115 < new pts 30595, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30594 + pts count: 1 = new pts: 30595. update pts: 30593 < new pts 30595, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30594, pts count: 1, new pts: 30595 < update pts: 30596, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 909019 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30597 + pts count: 1 = new pts: 30598, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30598 + pts count: 1 = new pts: 30599. update pts: 28115 < new pts 30599, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30598 + pts count: 1 = new pts: 30599. update pts: 30593 < new pts 30599, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 918980 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30599 + pts count: 1 = new pts: 30600. update pts: 28115 < new pts 30600, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30599 + pts count: 1 = new pts: 30600. update pts: 30593 < new pts 30600, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 927506 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30601 + pts count: 1 = new pts: 30602, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30602 + pts count: 1 = new pts: 30603. update pts: 28115 < new pts 30603, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30602 + pts count: 1 = new pts: 30603. update pts: 30593 < new pts 30603, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 935173 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30603, pts count: 1, new pts: 30604 < update pts: 30605, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30605 + pts count: 1 = new pts: 30606. update pts: 28115 < new pts 30606, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30605 + pts count: 1 = new pts: 30606. update pts: 30593 < new pts 30606, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30605 + pts count: 1 = new pts: 30606, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 950187 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30606 + pts count: 1 = new pts: 30607. update pts: 28115 < new pts 30607, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30606 + pts count: 1 = new pts: 30607. update pts: 30593 < new pts 30607, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 958761 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30608 + pts count: 1 = new pts: 30609. update pts: 28115 < new pts 30609, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30608 + pts count: 1 = new pts: 30609. update pts: 30593 < new pts 30609, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30608, pts count: 1, new pts: 30609 < update pts: 30610, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 971232 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30610 + pts count: 1 = new pts: 30611. update pts: 28115 < new pts 30611, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30610 + pts count: 1 = new pts: 30611. update pts: 30593 < new pts 30611, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 980805 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30611 + pts count: 1 = new pts: 30612. update pts: 28115 < new pts 30612, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30611 + pts count: 1 = new pts: 30612. update pts: 30593 < new pts 30612, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 986296 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30612, pts count: 1, new pts: 30613 < update pts: 30614, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30614 + pts count: 1 = new pts: 30615. update pts: 28115 < new pts 30615, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30614 + pts count: 1 = new pts: 30615. update pts: 30593 < new pts 30615, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30614 + pts count: 1 = new pts: 30615. update pts: 30613 < new pts 30615, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1005591 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30614 + pts count: 1 = new pts: 30615. update pts: 28115 < new pts 30615, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30614 + pts count: 1 = new pts: 30615. update pts: 30593 < new pts 30615, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30614 + pts count: 1 = new pts: 30615. update pts: 30613 < new pts 30615, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1012344 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30615 + pts count: 1 = new pts: 30616. update pts: 28115 < new pts 30616, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30615 + pts count: 1 = new pts: 30616. update pts: 30593 < new pts 30616, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30615 + pts count: 1 = new pts: 30616. update pts: 30613 < new pts 30616, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -Wrote 1021257 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30618, pts count: 1, new pts: 30619 < update pts: 30620, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30618, pts count: 1, new pts: 30619 < update pts: 30621, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30621 + pts count: 1 = new pts: 30622. update pts: 28115 < new pts 30622, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30621 + pts count: 1 = new pts: 30622. update pts: 30593 < new pts 30622, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30621 + pts count: 1 = new pts: 30622. update pts: 30613 < new pts 30622, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1041859 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30621 + pts count: 1 = new pts: 30622. update pts: 28115 < new pts 30622, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30621 + pts count: 1 = new pts: 30622. update pts: 30593 < new pts 30622, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30621 + pts count: 1 = new pts: 30622. update pts: 30613 < new pts 30622, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1050922 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30625 + pts count: 1 = new pts: 30626, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30626 + pts count: 1 = new pts: 30627. update pts: 28115 < new pts 30627, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30626 + pts count: 1 = new pts: 30627. update pts: 30593 < new pts 30627, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30626 + pts count: 1 = new pts: 30627. update pts: 30613 < new pts 30627, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1052798 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30627 + pts count: 1 = new pts: 30628. update pts: 28115 < new pts 30628, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30627 + pts count: 1 = new pts: 30628. update pts: 30593 < new pts 30628, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30627 + pts count: 1 = new pts: 30628. update pts: 30613 < new pts 30628, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1054993 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30630 + pts count: 1 = new pts: 30631. update pts: 28115 < new pts 30631, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30630 + pts count: 1 = new pts: 30631. update pts: 30593 < new pts 30631, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30630 + pts count: 1 = new pts: 30631. update pts: 30613 < new pts 30631, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1056361 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30632 + pts count: 1 = new pts: 30633. update pts: 28115 < new pts 30633, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30632 + pts count: 1 = new pts: 30633. update pts: 30593 < new pts 30633, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30632 + pts count: 1 = new pts: 30633. update pts: 30613 < new pts 30633, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1056967 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30634 + pts count: 1 = new pts: 30635. update pts: 28115 < new pts 30635, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30634 + pts count: 1 = new pts: 30635. update pts: 30593 < new pts 30635, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30634 + pts count: 1 = new pts: 30635. update pts: 30613 < new pts 30635, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30635 + pts count: 1 = new pts: 30636, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1060898 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30636 + pts count: 1 = new pts: 30637. update pts: 28115 < new pts 30637, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30636 + pts count: 1 = new pts: 30637. update pts: 30593 < new pts 30637, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30636 + pts count: 1 = new pts: 30637. update pts: 30613 < new pts 30637, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1065392 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30637 + pts count: 1 = new pts: 30638. update pts: 28115 < new pts 30638, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30637 + pts count: 1 = new pts: 30638. update pts: 30593 < new pts 30638, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30637 + pts count: 1 = new pts: 30638. update pts: 30613 < new pts 30638, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30637 + pts count: 1 = new pts: 30638, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1067583 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30640 + pts count: 1 = new pts: 30641. update pts: 28115 < new pts 30641, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30640 + pts count: 1 = new pts: 30641. update pts: 30593 < new pts 30641, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30640 + pts count: 1 = new pts: 30641. update pts: 30613 < new pts 30641, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30640 + pts count: 1 = new pts: 30641. update pts: 30638 < new pts 30641, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1071050 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30641 + pts count: 1 = new pts: 30642. update pts: 28115 < new pts 30642, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30641 + pts count: 1 = new pts: 30642. update pts: 30593 < new pts 30642, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30641 + pts count: 1 = new pts: 30642. update pts: 30613 < new pts 30642, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30641 + pts count: 1 = new pts: 30642. update pts: 30638 < new pts 30642, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30641 + pts count: 1 = new pts: 30642, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1069105 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30643 + pts count: 1 = new pts: 30644. update pts: 28115 < new pts 30644, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30643 + pts count: 1 = new pts: 30644. update pts: 30593 < new pts 30644, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30643 + pts count: 1 = new pts: 30644. update pts: 30613 < new pts 30644, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30643 + pts count: 1 = new pts: 30644. update pts: 30638 < new pts 30644, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30643 + pts count: 1 = new pts: 30644. update pts: 30642 < new pts 30644, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1070688 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30645 + pts count: 1 = new pts: 30646. update pts: 28115 < new pts 30646, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30645 + pts count: 1 = new pts: 30646. update pts: 30593 < new pts 30646, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30645 + pts count: 1 = new pts: 30646. update pts: 30613 < new pts 30646, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30645 + pts count: 1 = new pts: 30646. update pts: 30638 < new pts 30646, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30645 + pts count: 1 = new pts: 30646. update pts: 30642 < new pts 30646, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30645 + pts count: 1 = new pts: 30646, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30647 + pts count: 1 = new pts: 30648, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1070596 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30648 + pts count: 1 = new pts: 30649. update pts: 28115 < new pts 30649, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30648 + pts count: 1 = new pts: 30649. update pts: 30593 < new pts 30649, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30648 + pts count: 1 = new pts: 30649. update pts: 30613 < new pts 30649, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30648 + pts count: 1 = new pts: 30649. update pts: 30638 < new pts 30649, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30648 + pts count: 1 = new pts: 30649. update pts: 30642 < new pts 30649, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30648 + pts count: 1 = new pts: 30649. update pts: 30646 < new pts 30649, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1074173 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30649 + pts count: 1 = new pts: 30650. update pts: 28115 < new pts 30650, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30649 + pts count: 1 = new pts: 30650. update pts: 30593 < new pts 30650, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30649 + pts count: 1 = new pts: 30650. update pts: 30613 < new pts 30650, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30649 + pts count: 1 = new pts: 30650. update pts: 30638 < new pts 30650, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30649 + pts count: 1 = new pts: 30650. update pts: 30642 < new pts 30650, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30649 + pts count: 1 = new pts: 30650. update pts: 30646 < new pts 30650, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30649 + pts count: 1 = new pts: 30650, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30651 + pts count: 1 = new pts: 30652, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1075719 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30652 + pts count: 1 = new pts: 30653. update pts: 28115 < new pts 30653, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30652 + pts count: 1 = new pts: 30653. update pts: 30593 < new pts 30653, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30652 + pts count: 1 = new pts: 30653. update pts: 30613 < new pts 30653, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30652 + pts count: 1 = new pts: 30653. update pts: 30638 < new pts 30653, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30652 + pts count: 1 = new pts: 30653. update pts: 30642 < new pts 30653, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30652 + pts count: 1 = new pts: 30653. update pts: 30646 < new pts 30653, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30652 + pts count: 1 = new pts: 30653. update pts: 30650 < new pts 30653, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30653 + pts count: 1 = new pts: 30654, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1075316 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30654 + pts count: 1 = new pts: 30655. update pts: 28115 < new pts 30655, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30654 + pts count: 1 = new pts: 30655. update pts: 30593 < new pts 30655, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30654 + pts count: 1 = new pts: 30655. update pts: 30613 < new pts 30655, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30654 + pts count: 1 = new pts: 30655. update pts: 30638 < new pts 30655, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30654 + pts count: 1 = new pts: 30655. update pts: 30642 < new pts 30655, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30654 + pts count: 1 = new pts: 30655. update pts: 30646 < new pts 30655, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30654 + pts count: 1 = new pts: 30655. update pts: 30650 < new pts 30655, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1078491 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30655 + pts count: 1 = new pts: 30656, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30656 + pts count: 1 = new pts: 30657. update pts: 28115 < new pts 30657, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30656 + pts count: 1 = new pts: 30657. update pts: 30593 < new pts 30657, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30656 + pts count: 1 = new pts: 30657. update pts: 30613 < new pts 30657, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30656 + pts count: 1 = new pts: 30657. update pts: 30638 < new pts 30657, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30656 + pts count: 1 = new pts: 30657. update pts: 30642 < new pts 30657, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30656 + pts count: 1 = new pts: 30657. update pts: 30646 < new pts 30657, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30656 + pts count: 1 = new pts: 30657. update pts: 30650 < new pts 30657, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1078172 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30657 + pts count: 1 = new pts: 30658, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30658 + pts count: 1 = new pts: 30659. update pts: 28115 < new pts 30659, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30658 + pts count: 1 = new pts: 30659. update pts: 30593 < new pts 30659, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30658 + pts count: 1 = new pts: 30659. update pts: 30613 < new pts 30659, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30658 + pts count: 1 = new pts: 30659. update pts: 30638 < new pts 30659, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30658 + pts count: 1 = new pts: 30659. update pts: 30642 < new pts 30659, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30658 + pts count: 1 = new pts: 30659. update pts: 30646 < new pts 30659, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30658 + pts count: 1 = new pts: 30659. update pts: 30650 < new pts 30659, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1076364 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30659 + pts count: 1 = new pts: 30660. update pts: 28115 < new pts 30660, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30659 + pts count: 1 = new pts: 30660. update pts: 30593 < new pts 30660, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30659 + pts count: 1 = new pts: 30660. update pts: 30613 < new pts 30660, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30659 + pts count: 1 = new pts: 30660. update pts: 30638 < new pts 30660, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30659 + pts count: 1 = new pts: 30660. update pts: 30642 < new pts 30660, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30659 + pts count: 1 = new pts: 30660. update pts: 30646 < new pts 30660, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30659 + pts count: 1 = new pts: 30660. update pts: 30650 < new pts 30660, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30661 + pts count: 1 = new pts: 30662, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1078302 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30662 + pts count: 1 = new pts: 30663. update pts: 28115 < new pts 30663, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30662 + pts count: 1 = new pts: 30663. update pts: 30593 < new pts 30663, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30662 + pts count: 1 = new pts: 30663. update pts: 30613 < new pts 30663, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30662 + pts count: 1 = new pts: 30663. update pts: 30638 < new pts 30663, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30662 + pts count: 1 = new pts: 30663. update pts: 30642 < new pts 30663, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30662 + pts count: 1 = new pts: 30663. update pts: 30646 < new pts 30663, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30662 + pts count: 1 = new pts: 30663. update pts: 30650 < new pts 30663, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30663 + pts count: 1 = new pts: 30664, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1080594 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30664 + pts count: 1 = new pts: 30665. update pts: 28115 < new pts 30665, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30664 + pts count: 1 = new pts: 30665. update pts: 30593 < new pts 30665, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30664 + pts count: 1 = new pts: 30665. update pts: 30613 < new pts 30665, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30664 + pts count: 1 = new pts: 30665. update pts: 30638 < new pts 30665, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30664 + pts count: 1 = new pts: 30665. update pts: 30642 < new pts 30665, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30664 + pts count: 1 = new pts: 30665. update pts: 30646 < new pts 30665, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30664 + pts count: 1 = new pts: 30665. update pts: 30650 < new pts 30665, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30665 + pts count: 1 = new pts: 30666, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1083092 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30666 + pts count: 1 = new pts: 30667. update pts: 28115 < new pts 30667, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30666 + pts count: 1 = new pts: 30667. update pts: 30593 < new pts 30667, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30666 + pts count: 1 = new pts: 30667. update pts: 30613 < new pts 30667, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30666 + pts count: 1 = new pts: 30667. update pts: 30638 < new pts 30667, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30666 + pts count: 1 = new pts: 30667. update pts: 30642 < new pts 30667, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30666 + pts count: 1 = new pts: 30667. update pts: 30646 < new pts 30667, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30666 + pts count: 1 = new pts: 30667. update pts: 30650 < new pts 30667, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1088293 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30669 + pts count: 1 = new pts: 30670. update pts: 28115 < new pts 30670, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30669 + pts count: 1 = new pts: 30670. update pts: 30593 < new pts 30670, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30669 + pts count: 1 = new pts: 30670. update pts: 30613 < new pts 30670, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30669 + pts count: 1 = new pts: 30670. update pts: 30638 < new pts 30670, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30669 + pts count: 1 = new pts: 30670. update pts: 30642 < new pts 30670, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30669 + pts count: 1 = new pts: 30670. update pts: 30646 < new pts 30670, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30669 + pts count: 1 = new pts: 30670. update pts: 30650 < new pts 30670, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30669 + pts count: 1 = new pts: 30670. update pts: 30669 < new pts 30670, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1093850 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30671 + pts count: 1 = new pts: 30672. update pts: 28115 < new pts 30672, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30671 + pts count: 1 = new pts: 30672. update pts: 30593 < new pts 30672, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30671 + pts count: 1 = new pts: 30672. update pts: 30613 < new pts 30672, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30671 + pts count: 1 = new pts: 30672. update pts: 30638 < new pts 30672, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30671 + pts count: 1 = new pts: 30672. update pts: 30642 < new pts 30672, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30671 + pts count: 1 = new pts: 30672. update pts: 30646 < new pts 30672, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30671 + pts count: 1 = new pts: 30672. update pts: 30650 < new pts 30672, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30671 + pts count: 1 = new pts: 30672. update pts: 30669 < new pts 30672, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1096586 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShortMessage. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30673 + pts count: 1 = new pts: 30674, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30674 + pts count: 1 = new pts: 30675. update pts: 28115 < new pts 30675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30674 + pts count: 1 = new pts: 30675. update pts: 30593 < new pts 30675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30674 + pts count: 1 = new pts: 30675. update pts: 30613 < new pts 30675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30674 + pts count: 1 = new pts: 30675. update pts: 30638 < new pts 30675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30674 + pts count: 1 = new pts: 30675. update pts: 30642 < new pts 30675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30674 + pts count: 1 = new pts: 30675. update pts: 30646 < new pts 30675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30674 + pts count: 1 = new pts: 30675. update pts: 30650 < new pts 30675, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30674 + pts count: 1 = new pts: 30675. update pts: 30669 < new pts 30675, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1098563 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30675 + pts count: 1 = new pts: 30676. update pts: 28115 < new pts 30676, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30675 + pts count: 1 = new pts: 30676. update pts: 30593 < new pts 30676, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30675 + pts count: 1 = new pts: 30676. update pts: 30613 < new pts 30676, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30675 + pts count: 1 = new pts: 30676. update pts: 30638 < new pts 30676, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30675 + pts count: 1 = new pts: 30676. update pts: 30642 < new pts 30676, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30675 + pts count: 1 = new pts: 30676. update pts: 30646 < new pts 30676, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30675 + pts count: 1 = new pts: 30676. update pts: 30650 < new pts 30676, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30675 + pts count: 1 = new pts: 30676. update pts: 30669 < new pts 30676, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30675 + pts count: 1 = new pts: 30676, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30677 + pts count: 1 = new pts: 30678, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1097789 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30678 + pts count: 1 = new pts: 30679. update pts: 28115 < new pts 30679, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30678 + pts count: 1 = new pts: 30679. update pts: 30593 < new pts 30679, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30678 + pts count: 1 = new pts: 30679. update pts: 30613 < new pts 30679, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30678 + pts count: 1 = new pts: 30679. update pts: 30638 < new pts 30679, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30678 + pts count: 1 = new pts: 30679. update pts: 30642 < new pts 30679, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30678 + pts count: 1 = new pts: 30679. update pts: 30646 < new pts 30679, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30678 + pts count: 1 = new pts: 30679. update pts: 30650 < new pts 30679, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30678 + pts count: 1 = new pts: 30679. update pts: 30669 < new pts 30679, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30678 + pts count: 1 = new pts: 30679. update pts: 30676 < new pts 30679, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1101547 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30681 + pts count: 1 = new pts: 30682. update pts: 28115 < new pts 30682, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30681 + pts count: 1 = new pts: 30682. update pts: 30593 < new pts 30682, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30681 + pts count: 1 = new pts: 30682. update pts: 30613 < new pts 30682, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30681 + pts count: 1 = new pts: 30682. update pts: 30638 < new pts 30682, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30681 + pts count: 1 = new pts: 30682. update pts: 30642 < new pts 30682, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30681 + pts count: 1 = new pts: 30682. update pts: 30646 < new pts 30682, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30681 + pts count: 1 = new pts: 30682. update pts: 30650 < new pts 30682, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30681 + pts count: 1 = new pts: 30682. update pts: 30669 < new pts 30682, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30681 + pts count: 1 = new pts: 30682. update pts: 30676 < new pts 30682, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1101892 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30682 + pts count: 1 = new pts: 30683. update pts: 28115 < new pts 30683, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30682 + pts count: 1 = new pts: 30683. update pts: 30593 < new pts 30683, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30682 + pts count: 1 = new pts: 30683. update pts: 30613 < new pts 30683, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30682 + pts count: 1 = new pts: 30683. update pts: 30638 < new pts 30683, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30682 + pts count: 1 = new pts: 30683. update pts: 30642 < new pts 30683, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30682 + pts count: 1 = new pts: 30683. update pts: 30646 < new pts 30683, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30682 + pts count: 1 = new pts: 30683. update pts: 30650 < new pts 30683, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30682 + pts count: 1 = new pts: 30683. update pts: 30669 < new pts 30683, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30682 + pts count: 1 = new pts: 30683. update pts: 30676 < new pts 30683, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30682 + pts count: 1 = new pts: 30683, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30684 + pts count: 1 = new pts: 30685, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1106749 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30685 + pts count: 1 = new pts: 30686. update pts: 28115 < new pts 30686, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30685 + pts count: 1 = new pts: 30686. update pts: 30593 < new pts 30686, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30685 + pts count: 1 = new pts: 30686. update pts: 30613 < new pts 30686, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30685 + pts count: 1 = new pts: 30686. update pts: 30638 < new pts 30686, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30685 + pts count: 1 = new pts: 30686. update pts: 30642 < new pts 30686, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30685 + pts count: 1 = new pts: 30686. update pts: 30646 < new pts 30686, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30685 + pts count: 1 = new pts: 30686. update pts: 30650 < new pts 30686, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30685 + pts count: 1 = new pts: 30686. update pts: 30669 < new pts 30686, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30685 + pts count: 1 = new pts: 30686. update pts: 30676 < new pts 30686, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30685 + pts count: 1 = new pts: 30686. update pts: 30683 < new pts 30686, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1103251 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30685, pts count: 1, new pts: 30686 < update pts: 30687, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30687 + pts count: 1 = new pts: 30688. update pts: 28115 < new pts 30688, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30687 + pts count: 1 = new pts: 30688. update pts: 30593 < new pts 30688, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30687 + pts count: 1 = new pts: 30688. update pts: 30613 < new pts 30688, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30687 + pts count: 1 = new pts: 30688. update pts: 30638 < new pts 30688, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30687 + pts count: 1 = new pts: 30688. update pts: 30642 < new pts 30688, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30687 + pts count: 1 = new pts: 30688. update pts: 30646 < new pts 30688, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30687 + pts count: 1 = new pts: 30688. update pts: 30650 < new pts 30688, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30687 + pts count: 1 = new pts: 30688. update pts: 30669 < new pts 30688, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30687 + pts count: 1 = new pts: 30688. update pts: 30676 < new pts 30688, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30687 + pts count: 1 = new pts: 30688. update pts: 30683 < new pts 30688, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1109737 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30688 + pts count: 1 = new pts: 30689, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30689 + pts count: 1 = new pts: 30690. update pts: 28115 < new pts 30690, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30689 + pts count: 1 = new pts: 30690. update pts: 30593 < new pts 30690, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30689 + pts count: 1 = new pts: 30690. update pts: 30613 < new pts 30690, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30689 + pts count: 1 = new pts: 30690. update pts: 30638 < new pts 30690, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30689 + pts count: 1 = new pts: 30690. update pts: 30642 < new pts 30690, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30689 + pts count: 1 = new pts: 30690. update pts: 30646 < new pts 30690, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30689 + pts count: 1 = new pts: 30690. update pts: 30650 < new pts 30690, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30689 + pts count: 1 = new pts: 30690. update pts: 30669 < new pts 30690, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30689 + pts count: 1 = new pts: 30690. update pts: 30676 < new pts 30690, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30689 + pts count: 1 = new pts: 30690. update pts: 30683 < new pts 30690, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1108038 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30690 + pts count: 1 = new pts: 30691. update pts: 28115 < new pts 30691, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30690 + pts count: 1 = new pts: 30691. update pts: 30593 < new pts 30691, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30690 + pts count: 1 = new pts: 30691. update pts: 30613 < new pts 30691, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30690 + pts count: 1 = new pts: 30691. update pts: 30638 < new pts 30691, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30690 + pts count: 1 = new pts: 30691. update pts: 30642 < new pts 30691, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30690 + pts count: 1 = new pts: 30691. update pts: 30646 < new pts 30691, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30690 + pts count: 1 = new pts: 30691. update pts: 30650 < new pts 30691, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30690 + pts count: 1 = new pts: 30691. update pts: 30669 < new pts 30691, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30690 + pts count: 1 = new pts: 30691. update pts: 30676 < new pts 30691, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30690 + pts count: 1 = new pts: 30691. update pts: 30683 < new pts 30691, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1115839 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30692 + pts count: 1 = new pts: 30693. update pts: 28115 < new pts 30693, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30692 + pts count: 1 = new pts: 30693. update pts: 30593 < new pts 30693, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30692 + pts count: 1 = new pts: 30693. update pts: 30613 < new pts 30693, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30692 + pts count: 1 = new pts: 30693. update pts: 30638 < new pts 30693, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30692 + pts count: 1 = new pts: 30693. update pts: 30642 < new pts 30693, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30692 + pts count: 1 = new pts: 30693. update pts: 30646 < new pts 30693, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30692 + pts count: 1 = new pts: 30693. update pts: 30650 < new pts 30693, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30692 + pts count: 1 = new pts: 30693. update pts: 30669 < new pts 30693, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30692 + pts count: 1 = new pts: 30693. update pts: 30676 < new pts 30693, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30692 + pts count: 1 = new pts: 30693. update pts: 30683 < new pts 30693, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30692 + pts count: 1 = new pts: 30693, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1111273 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30693 + pts count: 1 = new pts: 30694. update pts: 28115 < new pts 30694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30693 + pts count: 1 = new pts: 30694. update pts: 30593 < new pts 30694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30693 + pts count: 1 = new pts: 30694. update pts: 30613 < new pts 30694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30693 + pts count: 1 = new pts: 30694. update pts: 30638 < new pts 30694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30693 + pts count: 1 = new pts: 30694. update pts: 30642 < new pts 30694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30693 + pts count: 1 = new pts: 30694. update pts: 30646 < new pts 30694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30693 + pts count: 1 = new pts: 30694. update pts: 30650 < new pts 30694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30693 + pts count: 1 = new pts: 30694. update pts: 30669 < new pts 30694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30693 + pts count: 1 = new pts: 30694. update pts: 30676 < new pts 30694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30693 + pts count: 1 = new pts: 30694. update pts: 30683 < new pts 30694, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30693 + pts count: 1 = new pts: 30694. update pts: 30693 < new pts 30694, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1116122 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30696 + pts count: 1 = new pts: 30697. update pts: 28115 < new pts 30697, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30696 + pts count: 1 = new pts: 30697. update pts: 30593 < new pts 30697, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30696 + pts count: 1 = new pts: 30697. update pts: 30613 < new pts 30697, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30696 + pts count: 1 = new pts: 30697. update pts: 30638 < new pts 30697, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30696 + pts count: 1 = new pts: 30697. update pts: 30642 < new pts 30697, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30696 + pts count: 1 = new pts: 30697. update pts: 30646 < new pts 30697, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30696 + pts count: 1 = new pts: 30697. update pts: 30650 < new pts 30697, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30696 + pts count: 1 = new pts: 30697. update pts: 30669 < new pts 30697, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30696 + pts count: 1 = new pts: 30697. update pts: 30676 < new pts 30697, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30696 + pts count: 1 = new pts: 30697. update pts: 30683 < new pts 30697, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30696 + pts count: 1 = new pts: 30697. update pts: 30693 < new pts 30697, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1119506 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30698 + pts count: 1 = new pts: 30699. update pts: 28115 < new pts 30699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30698 + pts count: 1 = new pts: 30699. update pts: 30593 < new pts 30699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30698 + pts count: 1 = new pts: 30699. update pts: 30613 < new pts 30699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30698 + pts count: 1 = new pts: 30699. update pts: 30638 < new pts 30699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30698 + pts count: 1 = new pts: 30699. update pts: 30642 < new pts 30699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30698 + pts count: 1 = new pts: 30699. update pts: 30646 < new pts 30699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30698 + pts count: 1 = new pts: 30699. update pts: 30650 < new pts 30699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30698 + pts count: 1 = new pts: 30699. update pts: 30669 < new pts 30699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30698 + pts count: 1 = new pts: 30699. update pts: 30676 < new pts 30699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30698 + pts count: 1 = new pts: 30699. update pts: 30683 < new pts 30699, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30698 + pts count: 1 = new pts: 30699. update pts: 30693 < new pts 30699, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1122749 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30701 + pts count: 1 = new pts: 30702. update pts: 28115 < new pts 30702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30701 + pts count: 1 = new pts: 30702. update pts: 30593 < new pts 30702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30701 + pts count: 1 = new pts: 30702. update pts: 30613 < new pts 30702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30701 + pts count: 1 = new pts: 30702. update pts: 30638 < new pts 30702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30701 + pts count: 1 = new pts: 30702. update pts: 30642 < new pts 30702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30701 + pts count: 1 = new pts: 30702. update pts: 30646 < new pts 30702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30701 + pts count: 1 = new pts: 30702. update pts: 30650 < new pts 30702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30701 + pts count: 1 = new pts: 30702. update pts: 30669 < new pts 30702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30701 + pts count: 1 = new pts: 30702. update pts: 30676 < new pts 30702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30701 + pts count: 1 = new pts: 30702. update pts: 30683 < new pts 30702, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30701 + pts count: 1 = new pts: 30702. update pts: 30693 < new pts 30702, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30702 + pts count: 1 = new pts: 30703, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1121304 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30703 + pts count: 1 = new pts: 30704. update pts: 28115 < new pts 30704, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30703 + pts count: 1 = new pts: 30704. update pts: 30593 < new pts 30704, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30703 + pts count: 1 = new pts: 30704. update pts: 30613 < new pts 30704, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30703 + pts count: 1 = new pts: 30704. update pts: 30638 < new pts 30704, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30703 + pts count: 1 = new pts: 30704. update pts: 30642 < new pts 30704, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30703 + pts count: 1 = new pts: 30704. update pts: 30646 < new pts 30704, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30703 + pts count: 1 = new pts: 30704. update pts: 30650 < new pts 30704, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30703 + pts count: 1 = new pts: 30704. update pts: 30669 < new pts 30704, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30703 + pts count: 1 = new pts: 30704. update pts: 30676 < new pts 30704, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30703 + pts count: 1 = new pts: 30704. update pts: 30683 < new pts 30704, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30703 + pts count: 1 = new pts: 30704. update pts: 30693 < new pts 30704, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30703, pts count: 1, new pts: 30704 < update pts: 30705, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1124008 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30705 + pts count: 1 = new pts: 30706. update pts: 28115 < new pts 30706, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30705 + pts count: 1 = new pts: 30706. update pts: 30593 < new pts 30706, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30705 + pts count: 1 = new pts: 30706. update pts: 30613 < new pts 30706, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30705 + pts count: 1 = new pts: 30706. update pts: 30638 < new pts 30706, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30705 + pts count: 1 = new pts: 30706. update pts: 30642 < new pts 30706, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30705 + pts count: 1 = new pts: 30706. update pts: 30646 < new pts 30706, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30705 + pts count: 1 = new pts: 30706. update pts: 30650 < new pts 30706, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30705 + pts count: 1 = new pts: 30706. update pts: 30669 < new pts 30706, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30705 + pts count: 1 = new pts: 30706. update pts: 30676 < new pts 30706, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30705 + pts count: 1 = new pts: 30706. update pts: 30683 < new pts 30706, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30705 + pts count: 1 = new pts: 30706. update pts: 30693 < new pts 30706, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1125770 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30707 + pts count: 1 = new pts: 30708. update pts: 28115 < new pts 30708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30707 + pts count: 1 = new pts: 30708. update pts: 30593 < new pts 30708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30707 + pts count: 1 = new pts: 30708. update pts: 30613 < new pts 30708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30707 + pts count: 1 = new pts: 30708. update pts: 30638 < new pts 30708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30707 + pts count: 1 = new pts: 30708. update pts: 30642 < new pts 30708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30707 + pts count: 1 = new pts: 30708. update pts: 30646 < new pts 30708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30707 + pts count: 1 = new pts: 30708. update pts: 30650 < new pts 30708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30707 + pts count: 1 = new pts: 30708. update pts: 30669 < new pts 30708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30707 + pts count: 1 = new pts: 30708. update pts: 30676 < new pts 30708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30707 + pts count: 1 = new pts: 30708. update pts: 30683 < new pts 30708, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30707 + pts count: 1 = new pts: 30708. update pts: 30693 < new pts 30708, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1125604 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30708 + pts count: 1 = new pts: 30709. update pts: 28115 < new pts 30709, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30708 + pts count: 1 = new pts: 30709. update pts: 30593 < new pts 30709, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30708 + pts count: 1 = new pts: 30709. update pts: 30613 < new pts 30709, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30708 + pts count: 1 = new pts: 30709. update pts: 30638 < new pts 30709, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30708 + pts count: 1 = new pts: 30709. update pts: 30642 < new pts 30709, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30708 + pts count: 1 = new pts: 30709. update pts: 30646 < new pts 30709, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30708 + pts count: 1 = new pts: 30709. update pts: 30650 < new pts 30709, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30708 + pts count: 1 = new pts: 30709. update pts: 30669 < new pts 30709, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30708 + pts count: 1 = new pts: 30709. update pts: 30676 < new pts 30709, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30708 + pts count: 1 = new pts: 30709. update pts: 30683 < new pts 30709, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30708 + pts count: 1 = new pts: 30709. update pts: 30693 < new pts 30709, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1127367 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30710 + pts count: 1 = new pts: 30711. update pts: 28115 < new pts 30711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30710 + pts count: 1 = new pts: 30711. update pts: 30593 < new pts 30711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30710 + pts count: 1 = new pts: 30711. update pts: 30613 < new pts 30711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30710 + pts count: 1 = new pts: 30711. update pts: 30638 < new pts 30711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30710 + pts count: 1 = new pts: 30711. update pts: 30642 < new pts 30711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30710 + pts count: 1 = new pts: 30711. update pts: 30646 < new pts 30711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30710 + pts count: 1 = new pts: 30711. update pts: 30650 < new pts 30711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30710 + pts count: 1 = new pts: 30711. update pts: 30669 < new pts 30711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30710 + pts count: 1 = new pts: 30711. update pts: 30676 < new pts 30711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30710 + pts count: 1 = new pts: 30711. update pts: 30683 < new pts 30711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30710 + pts count: 1 = new pts: 30711. update pts: 30693 < new pts 30711, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30710 + pts count: 1 = new pts: 30711, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1131972 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30712 + pts count: 1 = new pts: 30713, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30713 + pts count: 1 = new pts: 30714. update pts: 28115 < new pts 30714, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30713 + pts count: 1 = new pts: 30714. update pts: 30593 < new pts 30714, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30713 + pts count: 1 = new pts: 30714. update pts: 30613 < new pts 30714, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30713 + pts count: 1 = new pts: 30714. update pts: 30638 < new pts 30714, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30713 + pts count: 1 = new pts: 30714. update pts: 30642 < new pts 30714, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30713 + pts count: 1 = new pts: 30714. update pts: 30646 < new pts 30714, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30713 + pts count: 1 = new pts: 30714. update pts: 30650 < new pts 30714, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30713 + pts count: 1 = new pts: 30714. update pts: 30669 < new pts 30714, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30713 + pts count: 1 = new pts: 30714. update pts: 30676 < new pts 30714, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30713 + pts count: 1 = new pts: 30714. update pts: 30683 < new pts 30714, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30713 + pts count: 1 = new pts: 30714. update pts: 30693 < new pts 30714, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30713 + pts count: 1 = new pts: 30714. update pts: 30711 < new pts 30714, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1125184 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30713 + pts count: 1 = new pts: 30714, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30714 + pts count: 1 = new pts: 30715, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30715 + pts count: 1 = new pts: 30716. update pts: 28115 < new pts 30716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30715 + pts count: 1 = new pts: 30716. update pts: 30593 < new pts 30716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30715 + pts count: 1 = new pts: 30716. update pts: 30613 < new pts 30716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30715 + pts count: 1 = new pts: 30716. update pts: 30638 < new pts 30716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30715 + pts count: 1 = new pts: 30716. update pts: 30642 < new pts 30716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30715 + pts count: 1 = new pts: 30716. update pts: 30646 < new pts 30716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30715 + pts count: 1 = new pts: 30716. update pts: 30650 < new pts 30716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30715 + pts count: 1 = new pts: 30716. update pts: 30669 < new pts 30716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30715 + pts count: 1 = new pts: 30716. update pts: 30676 < new pts 30716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30715 + pts count: 1 = new pts: 30716. update pts: 30683 < new pts 30716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30715 + pts count: 1 = new pts: 30716. update pts: 30693 < new pts 30716, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30715 + pts count: 1 = new pts: 30716. update pts: 30711 < new pts 30716, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1126758 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30716 + pts count: 1 = new pts: 30717. update pts: 28115 < new pts 30717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 182 + pts count: 1 = new pts: 183. update pts: 182 < new pts 183, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30716 + pts count: 1 = new pts: 30717. update pts: 30593 < new pts 30717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30716 + pts count: 1 = new pts: 30717. update pts: 30613 < new pts 30717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30716 + pts count: 1 = new pts: 30717. update pts: 30638 < new pts 30717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30716 + pts count: 1 = new pts: 30717. update pts: 30642 < new pts 30717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30716 + pts count: 1 = new pts: 30717. update pts: 30646 < new pts 30717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30716 + pts count: 1 = new pts: 30717. update pts: 30650 < new pts 30717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30716 + pts count: 1 = new pts: 30717. update pts: 30669 < new pts 30717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30716 + pts count: 1 = new pts: 30717. update pts: 30676 < new pts 30717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30716 + pts count: 1 = new pts: 30717. update pts: 30683 < new pts 30717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30716 + pts count: 1 = new pts: 30717. update pts: 30693 < new pts 30717, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30716 + pts count: 1 = new pts: 30717. update pts: 30711 < new pts 30717, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30716 + pts count: 1 = new pts: 30717, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChannelPinnedMessage... -UpdateHandler, danogentili: Saving an update of type updateChannelPinnedMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Applying pts. current pts: 182 + pts count: 1 = new pts: 183, channel id: 10084044 -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -Exception, danogentili: Undefined index: InputChannel in PeerHandler.php:292 -PeerHandler, danogentili: Undefined index: InputChannel -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1132272 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30718 + pts count: 1 = new pts: 30719. update pts: 28115 < new pts 30719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30718 + pts count: 1 = new pts: 30719. update pts: 30593 < new pts 30719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30718 + pts count: 1 = new pts: 30719. update pts: 30613 < new pts 30719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30718 + pts count: 1 = new pts: 30719. update pts: 30638 < new pts 30719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30718 + pts count: 1 = new pts: 30719. update pts: 30642 < new pts 30719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30718 + pts count: 1 = new pts: 30719. update pts: 30646 < new pts 30719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30718 + pts count: 1 = new pts: 30719. update pts: 30650 < new pts 30719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30718 + pts count: 1 = new pts: 30719. update pts: 30669 < new pts 30719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30718 + pts count: 1 = new pts: 30719. update pts: 30676 < new pts 30719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30718 + pts count: 1 = new pts: 30719. update pts: 30683 < new pts 30719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30718 + pts count: 1 = new pts: 30719. update pts: 30693 < new pts 30719, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30718 + pts count: 1 = new pts: 30719. update pts: 30711 < new pts 30719, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1133223 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30719 + pts count: 1 = new pts: 30720. update pts: 28115 < new pts 30720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30719 + pts count: 1 = new pts: 30720. update pts: 30593 < new pts 30720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30719 + pts count: 1 = new pts: 30720. update pts: 30613 < new pts 30720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30719 + pts count: 1 = new pts: 30720. update pts: 30638 < new pts 30720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30719 + pts count: 1 = new pts: 30720. update pts: 30642 < new pts 30720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30719 + pts count: 1 = new pts: 30720. update pts: 30646 < new pts 30720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30719 + pts count: 1 = new pts: 30720. update pts: 30650 < new pts 30720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30719 + pts count: 1 = new pts: 30720. update pts: 30669 < new pts 30720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30719 + pts count: 1 = new pts: 30720. update pts: 30676 < new pts 30720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30719 + pts count: 1 = new pts: 30720. update pts: 30683 < new pts 30720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30719 + pts count: 1 = new pts: 30720. update pts: 30693 < new pts 30720, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30719 + pts count: 1 = new pts: 30720. update pts: 30711 < new pts 30720, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1136575 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30722, pts count: 1, new pts: 30723 < update pts: 30725, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 28115 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30593 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30613 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30638 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30642 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30646 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30650 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30669 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30676 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30683 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30693 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30711 < new pts 30726, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1132854 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 28115 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30593 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30613 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30638 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30642 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30646 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30650 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30669 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30676 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30683 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30693 < new pts 30726, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30725 + pts count: 1 = new pts: 30726. update pts: 30711 < new pts 30726, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1132340 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30726 + pts count: 1 = new pts: 30727. update pts: 28115 < new pts 30727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30726 + pts count: 1 = new pts: 30727. update pts: 30593 < new pts 30727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30726 + pts count: 1 = new pts: 30727. update pts: 30613 < new pts 30727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30726 + pts count: 1 = new pts: 30727. update pts: 30638 < new pts 30727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30726 + pts count: 1 = new pts: 30727. update pts: 30642 < new pts 30727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30726 + pts count: 1 = new pts: 30727. update pts: 30646 < new pts 30727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30726 + pts count: 1 = new pts: 30727. update pts: 30650 < new pts 30727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30726 + pts count: 1 = new pts: 30727. update pts: 30669 < new pts 30727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30726 + pts count: 1 = new pts: 30727. update pts: 30676 < new pts 30727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30726 + pts count: 1 = new pts: 30727. update pts: 30683 < new pts 30727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30726 + pts count: 1 = new pts: 30727. update pts: 30693 < new pts 30727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30726 + pts count: 1 = new pts: 30727. update pts: 30711 < new pts 30727, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30726 + pts count: 1 = new pts: 30727, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1134986 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30727 + pts count: 1 = new pts: 30728. update pts: 28115 < new pts 30728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30727 + pts count: 1 = new pts: 30728. update pts: 30593 < new pts 30728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30727 + pts count: 1 = new pts: 30728. update pts: 30613 < new pts 30728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30727 + pts count: 1 = new pts: 30728. update pts: 30638 < new pts 30728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30727 + pts count: 1 = new pts: 30728. update pts: 30642 < new pts 30728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30727 + pts count: 1 = new pts: 30728. update pts: 30646 < new pts 30728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30727 + pts count: 1 = new pts: 30728. update pts: 30650 < new pts 30728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30727 + pts count: 1 = new pts: 30728. update pts: 30669 < new pts 30728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30727 + pts count: 1 = new pts: 30728. update pts: 30676 < new pts 30728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30727 + pts count: 1 = new pts: 30728. update pts: 30683 < new pts 30728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30727 + pts count: 1 = new pts: 30728. update pts: 30693 < new pts 30728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30727 + pts count: 1 = new pts: 30728. update pts: 30711 < new pts 30728, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30727 + pts count: 1 = new pts: 30728. update pts: 30727 < new pts 30728, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1139475 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30730 + pts count: 1 = new pts: 30731. update pts: 28115 < new pts 30731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30730 + pts count: 1 = new pts: 30731. update pts: 30593 < new pts 30731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30730 + pts count: 1 = new pts: 30731. update pts: 30613 < new pts 30731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30730 + pts count: 1 = new pts: 30731. update pts: 30638 < new pts 30731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30730 + pts count: 1 = new pts: 30731. update pts: 30642 < new pts 30731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30730 + pts count: 1 = new pts: 30731. update pts: 30646 < new pts 30731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30730 + pts count: 1 = new pts: 30731. update pts: 30650 < new pts 30731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30730 + pts count: 1 = new pts: 30731. update pts: 30669 < new pts 30731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30730 + pts count: 1 = new pts: 30731. update pts: 30676 < new pts 30731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30730 + pts count: 1 = new pts: 30731. update pts: 30683 < new pts 30731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30730 + pts count: 1 = new pts: 30731. update pts: 30693 < new pts 30731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30730 + pts count: 1 = new pts: 30731. update pts: 30711 < new pts 30731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30730 + pts count: 1 = new pts: 30731. update pts: 30727 < new pts 30731, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30730 + pts count: 1 = new pts: 30731, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30732 + pts count: 1 = new pts: 30733, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1143570 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30733 + pts count: 1 = new pts: 30734. update pts: 28115 < new pts 30734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30733 + pts count: 1 = new pts: 30734. update pts: 30593 < new pts 30734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30733 + pts count: 1 = new pts: 30734. update pts: 30613 < new pts 30734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30733 + pts count: 1 = new pts: 30734. update pts: 30638 < new pts 30734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30733 + pts count: 1 = new pts: 30734. update pts: 30642 < new pts 30734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30733 + pts count: 1 = new pts: 30734. update pts: 30646 < new pts 30734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30733 + pts count: 1 = new pts: 30734. update pts: 30650 < new pts 30734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30733 + pts count: 1 = new pts: 30734. update pts: 30669 < new pts 30734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30733 + pts count: 1 = new pts: 30734. update pts: 30676 < new pts 30734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30733 + pts count: 1 = new pts: 30734. update pts: 30683 < new pts 30734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30733 + pts count: 1 = new pts: 30734. update pts: 30693 < new pts 30734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30733 + pts count: 1 = new pts: 30734. update pts: 30711 < new pts 30734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30733 + pts count: 1 = new pts: 30734. update pts: 30727 < new pts 30734, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30733 + pts count: 1 = new pts: 30734. update pts: 30731 < new pts 30734, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30733 + pts count: 1 = new pts: 30734, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1144877 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30735 + pts count: 1 = new pts: 30736. update pts: 28115 < new pts 30736, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30735 + pts count: 1 = new pts: 30736. update pts: 30593 < new pts 30736, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30735 + pts count: 1 = new pts: 30736. update pts: 30613 < new pts 30736, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30735 + pts count: 1 = new pts: 30736. update pts: 30638 < new pts 30736, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30735 + pts count: 1 = new pts: 30736. update pts: 30642 < new pts 30736, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30735 + pts count: 1 = new pts: 30736. update pts: 30646 < new pts 30736, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30735 + pts count: 1 = new pts: 30736. update pts: 30650 < new pts 30736, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30735 + pts count: 1 = new pts: 30736. update pts: 30669 < new pts 30736, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30735 + pts count: 1 = new pts: 30736. update pts: 30676 < new pts 30736, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30735 + pts count: 1 = new pts: 30736. update pts: 30683 < new pts 30736, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30735 + pts count: 1 = new pts: 30736. update pts: 30693 < new pts 30736, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30735 + pts count: 1 = new pts: 30736. update pts: 30711 < new pts 30736, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30735 + pts count: 1 = new pts: 30736. update pts: 30727 < new pts 30736, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30735 + pts count: 1 = new pts: 30736. update pts: 30731 < new pts 30736, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1147188 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30736 + pts count: 1 = new pts: 30737. update pts: 28115 < new pts 30737, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30736 + pts count: 1 = new pts: 30737. update pts: 30593 < new pts 30737, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30736 + pts count: 1 = new pts: 30737. update pts: 30613 < new pts 30737, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30736 + pts count: 1 = new pts: 30737. update pts: 30638 < new pts 30737, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30736 + pts count: 1 = new pts: 30737. update pts: 30642 < new pts 30737, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30736 + pts count: 1 = new pts: 30737. update pts: 30646 < new pts 30737, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30736 + pts count: 1 = new pts: 30737. update pts: 30650 < new pts 30737, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30736 + pts count: 1 = new pts: 30737. update pts: 30669 < new pts 30737, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30736 + pts count: 1 = new pts: 30737. update pts: 30676 < new pts 30737, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30736 + pts count: 1 = new pts: 30737. update pts: 30683 < new pts 30737, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30736 + pts count: 1 = new pts: 30737. update pts: 30693 < new pts 30737, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30736 + pts count: 1 = new pts: 30737. update pts: 30711 < new pts 30737, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30736 + pts count: 1 = new pts: 30737. update pts: 30727 < new pts 30737, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30736 + pts count: 1 = new pts: 30737. update pts: 30731 < new pts 30737, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30736 + pts count: 1 = new pts: 30737, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30737, pts count: 1, new pts: 30738 < update pts: 30739, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1144825 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30739 + pts count: 1 = new pts: 30740. update pts: 28115 < new pts 30740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30739 + pts count: 1 = new pts: 30740. update pts: 30593 < new pts 30740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30739 + pts count: 1 = new pts: 30740. update pts: 30613 < new pts 30740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30739 + pts count: 1 = new pts: 30740. update pts: 30638 < new pts 30740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30739 + pts count: 1 = new pts: 30740. update pts: 30642 < new pts 30740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30739 + pts count: 1 = new pts: 30740. update pts: 30646 < new pts 30740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30739 + pts count: 1 = new pts: 30740. update pts: 30650 < new pts 30740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30739 + pts count: 1 = new pts: 30740. update pts: 30669 < new pts 30740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30739 + pts count: 1 = new pts: 30740. update pts: 30676 < new pts 30740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30739 + pts count: 1 = new pts: 30740. update pts: 30683 < new pts 30740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30739 + pts count: 1 = new pts: 30740. update pts: 30693 < new pts 30740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30739 + pts count: 1 = new pts: 30740. update pts: 30711 < new pts 30740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30739 + pts count: 1 = new pts: 30740. update pts: 30727 < new pts 30740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30739 + pts count: 1 = new pts: 30740. update pts: 30731 < new pts 30740, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30739 + pts count: 1 = new pts: 30740. update pts: 30737 < new pts 30740, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1148287 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 28115 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30593 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30613 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30638 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30642 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30646 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30650 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30669 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30676 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30683 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30693 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30711 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30727 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30731 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30737 < new pts 30742, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1143847 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 28115 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30593 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30613 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30638 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30642 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30646 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30650 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30669 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30676 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30683 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30693 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30711 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30727 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30731 < new pts 30742, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30741 + pts count: 1 = new pts: 30742. update pts: 30737 < new pts 30742, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30742 + pts count: 1 = new pts: 30743, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1144923 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30743 + pts count: 1 = new pts: 30744. update pts: 28115 < new pts 30744, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30743 + pts count: 1 = new pts: 30744. update pts: 30593 < new pts 30744, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30743 + pts count: 1 = new pts: 30744. update pts: 30613 < new pts 30744, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30743 + pts count: 1 = new pts: 30744. update pts: 30638 < new pts 30744, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30743 + pts count: 1 = new pts: 30744. update pts: 30642 < new pts 30744, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30743 + pts count: 1 = new pts: 30744. update pts: 30646 < new pts 30744, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30743 + pts count: 1 = new pts: 30744. update pts: 30650 < new pts 30744, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30743 + pts count: 1 = new pts: 30744. update pts: 30669 < new pts 30744, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30743 + pts count: 1 = new pts: 30744. update pts: 30676 < new pts 30744, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30743 + pts count: 1 = new pts: 30744. update pts: 30683 < new pts 30744, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30743 + pts count: 1 = new pts: 30744. update pts: 30693 < new pts 30744, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30743 + pts count: 1 = new pts: 30744. update pts: 30711 < new pts 30744, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30743 + pts count: 1 = new pts: 30744. update pts: 30727 < new pts 30744, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30743 + pts count: 1 = new pts: 30744. update pts: 30731 < new pts 30744, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30743 + pts count: 1 = new pts: 30744. update pts: 30737 < new pts 30744, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1151344 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30746 + pts count: 1 = new pts: 30747, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30747 + pts count: 1 = new pts: 30748. update pts: 28115 < new pts 30748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30747 + pts count: 1 = new pts: 30748. update pts: 30593 < new pts 30748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30747 + pts count: 1 = new pts: 30748. update pts: 30613 < new pts 30748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30747 + pts count: 1 = new pts: 30748. update pts: 30638 < new pts 30748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30747 + pts count: 1 = new pts: 30748. update pts: 30642 < new pts 30748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30747 + pts count: 1 = new pts: 30748. update pts: 30646 < new pts 30748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30747 + pts count: 1 = new pts: 30748. update pts: 30650 < new pts 30748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30747 + pts count: 1 = new pts: 30748. update pts: 30669 < new pts 30748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30747 + pts count: 1 = new pts: 30748. update pts: 30676 < new pts 30748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30747 + pts count: 1 = new pts: 30748. update pts: 30683 < new pts 30748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30747 + pts count: 1 = new pts: 30748. update pts: 30693 < new pts 30748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30747 + pts count: 1 = new pts: 30748. update pts: 30711 < new pts 30748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30747 + pts count: 1 = new pts: 30748. update pts: 30727 < new pts 30748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30747 + pts count: 1 = new pts: 30748. update pts: 30731 < new pts 30748, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30747 + pts count: 1 = new pts: 30748. update pts: 30737 < new pts 30748, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30747, pts count: 1, new pts: 30748 < update pts: 30749, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1148731 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30749, pts count: 1, new pts: 30750 < update pts: 30751, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30749, pts count: 1, new pts: 30750 < update pts: 30752, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 28115 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30593 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30613 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30638 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30642 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30646 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30650 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30669 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30676 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30683 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30693 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30711 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30727 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30731 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30737 < new pts 30753, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1158594 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 28115 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30593 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30613 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30638 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30642 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30646 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30650 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30669 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30676 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30683 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30693 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30711 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30727 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30731 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30752 + pts count: 1 = new pts: 30753. update pts: 30737 < new pts 30753, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30752 + pts count: 1 = new pts: 30753, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1159905 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30754 + pts count: 1 = new pts: 30755. update pts: 28115 < new pts 30755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30754 + pts count: 1 = new pts: 30755. update pts: 30593 < new pts 30755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30754 + pts count: 1 = new pts: 30755. update pts: 30613 < new pts 30755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30754 + pts count: 1 = new pts: 30755. update pts: 30638 < new pts 30755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30754 + pts count: 1 = new pts: 30755. update pts: 30642 < new pts 30755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30754 + pts count: 1 = new pts: 30755. update pts: 30646 < new pts 30755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30754 + pts count: 1 = new pts: 30755. update pts: 30650 < new pts 30755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30754 + pts count: 1 = new pts: 30755. update pts: 30669 < new pts 30755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30754 + pts count: 1 = new pts: 30755. update pts: 30676 < new pts 30755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30754 + pts count: 1 = new pts: 30755. update pts: 30683 < new pts 30755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30754 + pts count: 1 = new pts: 30755. update pts: 30693 < new pts 30755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30754 + pts count: 1 = new pts: 30755. update pts: 30711 < new pts 30755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30754 + pts count: 1 = new pts: 30755. update pts: 30727 < new pts 30755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30754 + pts count: 1 = new pts: 30755. update pts: 30731 < new pts 30755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30754 + pts count: 1 = new pts: 30755. update pts: 30737 < new pts 30755, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1162863 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30756 + pts count: 1 = new pts: 30757. update pts: 28115 < new pts 30757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30756 + pts count: 1 = new pts: 30757. update pts: 30593 < new pts 30757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30756 + pts count: 1 = new pts: 30757. update pts: 30613 < new pts 30757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30756 + pts count: 1 = new pts: 30757. update pts: 30638 < new pts 30757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30756 + pts count: 1 = new pts: 30757. update pts: 30642 < new pts 30757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30756 + pts count: 1 = new pts: 30757. update pts: 30646 < new pts 30757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30756 + pts count: 1 = new pts: 30757. update pts: 30650 < new pts 30757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30756 + pts count: 1 = new pts: 30757. update pts: 30669 < new pts 30757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30756 + pts count: 1 = new pts: 30757. update pts: 30676 < new pts 30757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30756 + pts count: 1 = new pts: 30757. update pts: 30683 < new pts 30757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30756 + pts count: 1 = new pts: 30757. update pts: 30693 < new pts 30757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30756 + pts count: 1 = new pts: 30757. update pts: 30711 < new pts 30757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30756 + pts count: 1 = new pts: 30757. update pts: 30727 < new pts 30757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30756 + pts count: 1 = new pts: 30757. update pts: 30731 < new pts 30757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30756 + pts count: 1 = new pts: 30757. update pts: 30737 < new pts 30757, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30756, pts count: 1, new pts: 30757 < update pts: 30758, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1167766 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30758 + pts count: 1 = new pts: 30759. update pts: 28115 < new pts 30759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30758 + pts count: 1 = new pts: 30759. update pts: 30593 < new pts 30759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30758 + pts count: 1 = new pts: 30759. update pts: 30613 < new pts 30759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30758 + pts count: 1 = new pts: 30759. update pts: 30638 < new pts 30759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30758 + pts count: 1 = new pts: 30759. update pts: 30642 < new pts 30759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30758 + pts count: 1 = new pts: 30759. update pts: 30646 < new pts 30759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30758 + pts count: 1 = new pts: 30759. update pts: 30650 < new pts 30759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30758 + pts count: 1 = new pts: 30759. update pts: 30669 < new pts 30759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30758 + pts count: 1 = new pts: 30759. update pts: 30676 < new pts 30759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30758 + pts count: 1 = new pts: 30759. update pts: 30683 < new pts 30759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30758 + pts count: 1 = new pts: 30759. update pts: 30693 < new pts 30759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30758 + pts count: 1 = new pts: 30759. update pts: 30711 < new pts 30759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30758 + pts count: 1 = new pts: 30759. update pts: 30727 < new pts 30759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30758 + pts count: 1 = new pts: 30759. update pts: 30731 < new pts 30759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30758 + pts count: 1 = new pts: 30759. update pts: 30737 < new pts 30759, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1169272 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30760 + pts count: 1 = new pts: 30761. update pts: 28115 < new pts 30761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Saving an update of type updateReadChannelInbox... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 183 + pts count: 1 = new pts: 184. update pts: 182 < new pts 184, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30760 + pts count: 1 = new pts: 30761. update pts: 30593 < new pts 30761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30760 + pts count: 1 = new pts: 30761. update pts: 30613 < new pts 30761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30760 + pts count: 1 = new pts: 30761. update pts: 30638 < new pts 30761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30760 + pts count: 1 = new pts: 30761. update pts: 30642 < new pts 30761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30760 + pts count: 1 = new pts: 30761. update pts: 30646 < new pts 30761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30760 + pts count: 1 = new pts: 30761. update pts: 30650 < new pts 30761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30760 + pts count: 1 = new pts: 30761. update pts: 30669 < new pts 30761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30760 + pts count: 1 = new pts: 30761. update pts: 30676 < new pts 30761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30760 + pts count: 1 = new pts: 30761. update pts: 30683 < new pts 30761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30760 + pts count: 1 = new pts: 30761. update pts: 30693 < new pts 30761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30760 + pts count: 1 = new pts: 30761. update pts: 30711 < new pts 30761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30760 + pts count: 1 = new pts: 30761. update pts: 30727 < new pts 30761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30760 + pts count: 1 = new pts: 30761. update pts: 30731 < new pts 30761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30760 + pts count: 1 = new pts: 30761. update pts: 30737 < new pts 30761, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1173534 bytes -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30767 + pts count: 1 = new pts: 30768. update pts: 28115 < new pts 30768, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 649733 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30767 + pts count: 1 = new pts: 30768. update pts: 28115 < new pts 30768, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 655190 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30767, pts count: 1, new pts: 30768 < update pts: 30769, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30769 + pts count: 1 = new pts: 30770. update pts: 28115 < new pts 30770, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 669560 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30769 + pts count: 1 = new pts: 30770, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30770 + pts count: 1 = new pts: 30771. update pts: 28115 < new pts 30771, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 680699 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30771 + pts count: 1 = new pts: 30772. update pts: 28115 < new pts 30772, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Applying pts. current pts: 30771 + pts count: 1 = new pts: 30772, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 687188 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30772 + pts count: 1 = new pts: 30773. update pts: 28115 < new pts 30773, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30772 + pts count: 1 = new pts: 30773. update pts: 30772 < new pts 30773, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 696784 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30775 + pts count: 1 = new pts: 30776. update pts: 28115 < new pts 30776, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30775 + pts count: 1 = new pts: 30776. update pts: 30772 < new pts 30776, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 702242 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30775, pts count: 1, new pts: 30776 < update pts: 30777, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30777 + pts count: 1 = new pts: 30778. update pts: 28115 < new pts 30778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30777 + pts count: 1 = new pts: 30778. update pts: 30772 < new pts 30778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30777 + pts count: 1 = new pts: 30778. update pts: 30776 < new pts 30778, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 721605 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30777 + pts count: 1 = new pts: 30778. update pts: 28115 < new pts 30778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30777 + pts count: 1 = new pts: 30778. update pts: 30772 < new pts 30778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30777 + pts count: 1 = new pts: 30778. update pts: 30776 < new pts 30778, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30777 + pts count: 1 = new pts: 30778, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 731800 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30778 + pts count: 1 = new pts: 30779. update pts: 28115 < new pts 30779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30778 + pts count: 1 = new pts: 30779. update pts: 30772 < new pts 30779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30778 + pts count: 1 = new pts: 30779. update pts: 30776 < new pts 30779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30778 + pts count: 1 = new pts: 30779. update pts: 30778 < new pts 30779, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30778 + pts count: 1 = new pts: 30779, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 741996 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30779 + pts count: 1 = new pts: 30780. update pts: 28115 < new pts 30780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30779 + pts count: 1 = new pts: 30780. update pts: 30772 < new pts 30780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30779 + pts count: 1 = new pts: 30780. update pts: 30776 < new pts 30780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30779 + pts count: 1 = new pts: 30780. update pts: 30778 < new pts 30780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30779 + pts count: 1 = new pts: 30780. update pts: 30779 < new pts 30780, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 747459 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30779 + pts count: 1 = new pts: 30780. update pts: 28115 < new pts 30780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30779 + pts count: 1 = new pts: 30780. update pts: 30772 < new pts 30780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30779 + pts count: 1 = new pts: 30780. update pts: 30776 < new pts 30780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30779 + pts count: 1 = new pts: 30780. update pts: 30778 < new pts 30780, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30779 + pts count: 1 = new pts: 30780. update pts: 30779 < new pts 30780, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 758305 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30781 + pts count: 1 = new pts: 30782. update pts: 28115 < new pts 30782, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30781 + pts count: 1 = new pts: 30782. update pts: 30772 < new pts 30782, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30781 + pts count: 1 = new pts: 30782. update pts: 30776 < new pts 30782, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30781 + pts count: 1 = new pts: 30782. update pts: 30778 < new pts 30782, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30781 + pts count: 1 = new pts: 30782. update pts: 30779 < new pts 30782, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 763774 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30781 + pts count: 1 = new pts: 30782, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30782 + pts count: 1 = new pts: 30783, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30783 + pts count: 1 = new pts: 30784. update pts: 28115 < new pts 30784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30783 + pts count: 1 = new pts: 30784. update pts: 30772 < new pts 30784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30783 + pts count: 1 = new pts: 30784. update pts: 30776 < new pts 30784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30783 + pts count: 1 = new pts: 30784. update pts: 30778 < new pts 30784, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30783 + pts count: 1 = new pts: 30784. update pts: 30779 < new pts 30784, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30783, pts count: 1, new pts: 30784 < update pts: 30786, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30786, pts count: 1, new pts: 30787 < update pts: 30788, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 793397 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30787 + pts count: 1 = new pts: 30788. update pts: 28115 < new pts 30788, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30787 + pts count: 1 = new pts: 30788. update pts: 30772 < new pts 30788, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30787 + pts count: 1 = new pts: 30788. update pts: 30776 < new pts 30788, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30787 + pts count: 1 = new pts: 30788. update pts: 30778 < new pts 30788, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30787 + pts count: 1 = new pts: 30788. update pts: 30779 < new pts 30788, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 807373 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30790 + pts count: 1 = new pts: 30791. update pts: 28115 < new pts 30791, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30790 + pts count: 1 = new pts: 30791. update pts: 30772 < new pts 30791, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30790 + pts count: 1 = new pts: 30791. update pts: 30776 < new pts 30791, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30790 + pts count: 1 = new pts: 30791. update pts: 30778 < new pts 30791, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30790 + pts count: 1 = new pts: 30791. update pts: 30779 < new pts 30791, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 812842 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30790 + pts count: 1 = new pts: 30791. update pts: 28115 < new pts 30791, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30790 + pts count: 1 = new pts: 30791. update pts: 30772 < new pts 30791, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30790 + pts count: 1 = new pts: 30791. update pts: 30776 < new pts 30791, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30790 + pts count: 1 = new pts: 30791. update pts: 30778 < new pts 30791, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30790 + pts count: 1 = new pts: 30791. update pts: 30779 < new pts 30791, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 819732 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30790 + pts count: 1 = new pts: 30791. update pts: 28115 < new pts 30791, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30790 + pts count: 1 = new pts: 30791. update pts: 30772 < new pts 30791, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30790 + pts count: 1 = new pts: 30791. update pts: 30776 < new pts 30791, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30790 + pts count: 1 = new pts: 30791. update pts: 30778 < new pts 30791, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30790 + pts count: 1 = new pts: 30791. update pts: 30779 < new pts 30791, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 825200 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30790, pts count: 1, new pts: 30791 < update pts: 30792, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30793 + pts count: 1 = new pts: 30794. update pts: 28115 < new pts 30794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30793 + pts count: 1 = new pts: 30794. update pts: 30772 < new pts 30794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30793 + pts count: 1 = new pts: 30794. update pts: 30776 < new pts 30794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30793 + pts count: 1 = new pts: 30794. update pts: 30778 < new pts 30794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30793 + pts count: 1 = new pts: 30794. update pts: 30779 < new pts 30794, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 841485 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30793 + pts count: 1 = new pts: 30794. update pts: 28115 < new pts 30794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30793 + pts count: 1 = new pts: 30794. update pts: 30772 < new pts 30794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30793 + pts count: 1 = new pts: 30794. update pts: 30776 < new pts 30794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30793 + pts count: 1 = new pts: 30794. update pts: 30778 < new pts 30794, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30793 + pts count: 1 = new pts: 30794. update pts: 30779 < new pts 30794, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 849655 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30794 + pts count: 1 = new pts: 30795, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30795 + pts count: 1 = new pts: 30796. update pts: 28115 < new pts 30796, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30795 + pts count: 1 = new pts: 30796. update pts: 30772 < new pts 30796, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30795 + pts count: 1 = new pts: 30796. update pts: 30776 < new pts 30796, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30795 + pts count: 1 = new pts: 30796. update pts: 30778 < new pts 30796, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30795 + pts count: 1 = new pts: 30796. update pts: 30779 < new pts 30796, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Pts hole. current pts: 181, pts count: 1, new pts: 182 < update pts: 184, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getChannelDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.channelDifference -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 871400 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30796, pts count: 1, new pts: 30797 < update pts: 30798, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30798 + pts count: 1 = new pts: 30799. update pts: 28115 < new pts 30799, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30798 + pts count: 1 = new pts: 30799. update pts: 30772 < new pts 30799, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30798 + pts count: 1 = new pts: 30799. update pts: 30776 < new pts 30799, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30798 + pts count: 1 = new pts: 30799. update pts: 30778 < new pts 30799, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30798 + pts count: 1 = new pts: 30799. update pts: 30779 < new pts 30799, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Deserializing MadelineProto from calls.madeline... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 882064 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30798 + pts count: 1 = new pts: 30799. update pts: 28115 < new pts 30799, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30798 + pts count: 1 = new pts: 30799. update pts: 28115 < new pts 30799, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30798 + pts count: 1 = new pts: 30799. update pts: 30772 < new pts 30799, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30798 + pts count: 1 = new pts: 30799. update pts: 30776 < new pts 30799, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30798 + pts count: 1 = new pts: 30799. update pts: 30778 < new pts 30799, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30798 + pts count: 1 = new pts: 30799. update pts: 30779 < new pts 30799, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30798, pts count: 1, new pts: 30799 < update pts: 30800, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 655981 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 893544 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30800 + pts count: 1 = new pts: 30801. update pts: 28115 < new pts 30801, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30800, pts count: 1, new pts: 30801 < update pts: 30802, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30802 + pts count: 1 = new pts: 30803. update pts: 28115 < new pts 30803, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30802 + pts count: 1 = new pts: 30803. update pts: 30772 < new pts 30803, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30802 + pts count: 1 = new pts: 30803. update pts: 30776 < new pts 30803, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30802 + pts count: 1 = new pts: 30803. update pts: 30778 < new pts 30803, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30802 + pts count: 1 = new pts: 30803. update pts: 30779 < new pts 30803, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 666483 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30802 + pts count: 1 = new pts: 30803. update pts: 28115 < new pts 30803, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 904752 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 677285 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30802 + pts count: 1 = new pts: 30803. update pts: 28115 < new pts 30803, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30802 + pts count: 1 = new pts: 30803. update pts: 30772 < new pts 30803, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30802 + pts count: 1 = new pts: 30803. update pts: 30776 < new pts 30803, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30802 + pts count: 1 = new pts: 30803. update pts: 30778 < new pts 30803, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30802 + pts count: 1 = new pts: 30803. update pts: 30779 < new pts 30803, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30803 + pts count: 1 = new pts: 30804. update pts: 28115 < new pts 30804, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 914439 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 686218 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30804 + pts count: 1 = new pts: 30805. update pts: 28115 < new pts 30805, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30804 + pts count: 1 = new pts: 30805. update pts: 30772 < new pts 30805, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30804 + pts count: 1 = new pts: 30805. update pts: 30776 < new pts 30805, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30804 + pts count: 1 = new pts: 30805. update pts: 30778 < new pts 30805, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30804 + pts count: 1 = new pts: 30805. update pts: 30779 < new pts 30805, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30804 + pts count: 1 = new pts: 30805. update pts: 28115 < new pts 30805, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 932963 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 696605 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30807 + pts count: 1 = new pts: 30808. update pts: 28115 < new pts 30808, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30807 + pts count: 1 = new pts: 30808. update pts: 30772 < new pts 30808, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30807 + pts count: 1 = new pts: 30808. update pts: 30776 < new pts 30808, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30807 + pts count: 1 = new pts: 30808. update pts: 30778 < new pts 30808, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30807 + pts count: 1 = new pts: 30808. update pts: 30779 < new pts 30808, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30807 + pts count: 1 = new pts: 30808, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30808 + pts count: 1 = new pts: 30809, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30808 + pts count: 1 = new pts: 30809. update pts: 28115 < new pts 30809, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 939155 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30809 + pts count: 1 = new pts: 30810, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30810 + pts count: 1 = new pts: 30811. update pts: 28115 < new pts 30811, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30810 + pts count: 1 = new pts: 30811. update pts: 30772 < new pts 30811, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30810 + pts count: 1 = new pts: 30811. update pts: 30776 < new pts 30811, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30810 + pts count: 1 = new pts: 30811. update pts: 30778 < new pts 30811, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30810 + pts count: 1 = new pts: 30811. update pts: 30779 < new pts 30811, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30810 + pts count: 1 = new pts: 30811. update pts: 30808 < new pts 30811, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30809, pts count: 1, new pts: 30810 < update pts: 30813, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 718251 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30813, pts count: 1, new pts: 30814 < update pts: 30815, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 954918 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30815 + pts count: 1 = new pts: 30816. update pts: 28115 < new pts 30816, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30814 + pts count: 1 = new pts: 30815. update pts: 28115 < new pts 30815, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30814 + pts count: 1 = new pts: 30815. update pts: 30772 < new pts 30815, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30814 + pts count: 1 = new pts: 30815. update pts: 30776 < new pts 30815, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30814 + pts count: 1 = new pts: 30815. update pts: 30778 < new pts 30815, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30814 + pts count: 1 = new pts: 30815. update pts: 30779 < new pts 30815, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30814 + pts count: 1 = new pts: 30815. update pts: 30808 < new pts 30815, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 736871 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 964392 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30816 + pts count: 1 = new pts: 30817. update pts: 28115 < new pts 30817, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30817 + pts count: 1 = new pts: 30818. update pts: 28115 < new pts 30818, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30817 + pts count: 1 = new pts: 30818. update pts: 30772 < new pts 30818, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30817 + pts count: 1 = new pts: 30818. update pts: 30776 < new pts 30818, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30817 + pts count: 1 = new pts: 30818. update pts: 30778 < new pts 30818, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30817 + pts count: 1 = new pts: 30818. update pts: 30779 < new pts 30818, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30817 + pts count: 1 = new pts: 30818. update pts: 30808 < new pts 30818, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 747219 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 973353 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30818, pts count: 1, new pts: 30819 < update pts: 30820, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30821 + pts count: 1 = new pts: 30822. update pts: 28115 < new pts 30822, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30818 + pts count: 1 = new pts: 30819. update pts: 28115 < new pts 30819, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30818 + pts count: 1 = new pts: 30819. update pts: 30772 < new pts 30819, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30818 + pts count: 1 = new pts: 30819. update pts: 30776 < new pts 30819, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30818 + pts count: 1 = new pts: 30819. update pts: 30778 < new pts 30819, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30818 + pts count: 1 = new pts: 30819. update pts: 30779 < new pts 30819, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30818 + pts count: 1 = new pts: 30819. update pts: 30808 < new pts 30819, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 768745 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 984839 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30822, pts count: 1, new pts: 30823 < update pts: 30824, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30821 + pts count: 1 = new pts: 30822. update pts: 28115 < new pts 30822, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30821 + pts count: 1 = new pts: 30822, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30824 + pts count: 1 = new pts: 30825. update pts: 28115 < new pts 30825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30824 + pts count: 1 = new pts: 30825. update pts: 30772 < new pts 30825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30824 + pts count: 1 = new pts: 30825. update pts: 30776 < new pts 30825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30824 + pts count: 1 = new pts: 30825. update pts: 30778 < new pts 30825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30824 + pts count: 1 = new pts: 30825. update pts: 30779 < new pts 30825, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30824 + pts count: 1 = new pts: 30825. update pts: 30808 < new pts 30825, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 787092 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 998370 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30825 + pts count: 1 = new pts: 30826. update pts: 28115 < new pts 30826, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30825 + pts count: 1 = new pts: 30826. update pts: 30822 < new pts 30826, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30825 + pts count: 1 = new pts: 30826. update pts: 28115 < new pts 30826, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30825 + pts count: 1 = new pts: 30826. update pts: 30772 < new pts 30826, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30825 + pts count: 1 = new pts: 30826. update pts: 30776 < new pts 30826, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30825 + pts count: 1 = new pts: 30826. update pts: 30778 < new pts 30826, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30825 + pts count: 1 = new pts: 30826. update pts: 30779 < new pts 30826, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30825 + pts count: 1 = new pts: 30826. update pts: 30808 < new pts 30826, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 799920 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1014142 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30828 + pts count: 1 = new pts: 30829. update pts: 28115 < new pts 30829, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30828 + pts count: 1 = new pts: 30829. update pts: 30822 < new pts 30829, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30828 + pts count: 1 = new pts: 30829. update pts: 28115 < new pts 30829, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30828 + pts count: 1 = new pts: 30829. update pts: 30772 < new pts 30829, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30828 + pts count: 1 = new pts: 30829. update pts: 30776 < new pts 30829, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30828 + pts count: 1 = new pts: 30829. update pts: 30778 < new pts 30829, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30828 + pts count: 1 = new pts: 30829. update pts: 30779 < new pts 30829, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30828 + pts count: 1 = new pts: 30829. update pts: 30808 < new pts 30829, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 30831 + pts count: 1 = new pts: 30832, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 813784 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1026108 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30833 + pts count: 1 = new pts: 30834. update pts: 28115 < new pts 30834, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30833 + pts count: 1 = new pts: 30834. update pts: 30772 < new pts 30834, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30833 + pts count: 1 = new pts: 30834. update pts: 30776 < new pts 30834, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30833 + pts count: 1 = new pts: 30834. update pts: 30778 < new pts 30834, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30833 + pts count: 1 = new pts: 30834. update pts: 30779 < new pts 30834, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30833 + pts count: 1 = new pts: 30834. update pts: 30808 < new pts 30834, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30833 + pts count: 1 = new pts: 30834. update pts: 30833 < new pts 30834, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30832 + pts count: 1 = new pts: 30833. update pts: 28115 < new pts 30833, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30832 + pts count: 1 = new pts: 30833. update pts: 30822 < new pts 30833, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30832, pts count: 1, new pts: 30833 < update pts: 30835, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 835531 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1032268 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30835, pts count: 1, new pts: 30836 < update pts: 30837, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 30835, pts count: 1, new pts: 30836 < update pts: 30838, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30835 + pts count: 1 = new pts: 30836. update pts: 28115 < new pts 30836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30835 + pts count: 1 = new pts: 30836. update pts: 30772 < new pts 30836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30835 + pts count: 1 = new pts: 30836. update pts: 30776 < new pts 30836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30835 + pts count: 1 = new pts: 30836. update pts: 30778 < new pts 30836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30835 + pts count: 1 = new pts: 30836. update pts: 30779 < new pts 30836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30835 + pts count: 1 = new pts: 30836. update pts: 30808 < new pts 30836, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30835 + pts count: 1 = new pts: 30836. update pts: 30833 < new pts 30836, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30838 + pts count: 1 = new pts: 30839. update pts: 28115 < new pts 30839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30838 + pts count: 1 = new pts: 30839. update pts: 30822 < new pts 30839, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 864439 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1038036 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30838 + pts count: 1 = new pts: 30839, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30838 + pts count: 1 = new pts: 30839. update pts: 28115 < new pts 30839, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30838 + pts count: 1 = new pts: 30839. update pts: 30822 < new pts 30839, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30839 + pts count: 1 = new pts: 30840. update pts: 28115 < new pts 30840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30839 + pts count: 1 = new pts: 30840. update pts: 30772 < new pts 30840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30839 + pts count: 1 = new pts: 30840. update pts: 30776 < new pts 30840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30839 + pts count: 1 = new pts: 30840. update pts: 30778 < new pts 30840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30839 + pts count: 1 = new pts: 30840. update pts: 30779 < new pts 30840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30839 + pts count: 1 = new pts: 30840. update pts: 30808 < new pts 30840, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30839 + pts count: 1 = new pts: 30840. update pts: 30833 < new pts 30840, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1041892 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 874949 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30840 + pts count: 1 = new pts: 30841. update pts: 28115 < new pts 30841, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30840 + pts count: 1 = new pts: 30841. update pts: 30772 < new pts 30841, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30840 + pts count: 1 = new pts: 30841. update pts: 30776 < new pts 30841, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30840 + pts count: 1 = new pts: 30841. update pts: 30778 < new pts 30841, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30840 + pts count: 1 = new pts: 30841. update pts: 30779 < new pts 30841, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30840 + pts count: 1 = new pts: 30841. update pts: 30808 < new pts 30841, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30840 + pts count: 1 = new pts: 30841. update pts: 30833 < new pts 30841, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30840 + pts count: 1 = new pts: 30841. update pts: 28115 < new pts 30841, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30840 + pts count: 1 = new pts: 30841. update pts: 30822 < new pts 30841, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1046479 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 892910 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30842 + pts count: 1 = new pts: 30843. update pts: 28115 < new pts 30843, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30842 + pts count: 1 = new pts: 30843. update pts: 30772 < new pts 30843, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30842 + pts count: 1 = new pts: 30843. update pts: 30776 < new pts 30843, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30842 + pts count: 1 = new pts: 30843. update pts: 30778 < new pts 30843, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30842 + pts count: 1 = new pts: 30843. update pts: 30779 < new pts 30843, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30842 + pts count: 1 = new pts: 30843. update pts: 30808 < new pts 30843, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30842 + pts count: 1 = new pts: 30843. update pts: 30833 < new pts 30843, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30842 + pts count: 1 = new pts: 30843. update pts: 28115 < new pts 30843, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30842 + pts count: 1 = new pts: 30843. update pts: 30822 < new pts 30843, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 906067 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1049794 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30844 + pts count: 1 = new pts: 30845. update pts: 28115 < new pts 30845, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30844 + pts count: 1 = new pts: 30845. update pts: 30822 < new pts 30845, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30844 + pts count: 1 = new pts: 30845. update pts: 28115 < new pts 30845, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30844 + pts count: 1 = new pts: 30845. update pts: 30772 < new pts 30845, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30844 + pts count: 1 = new pts: 30845. update pts: 30776 < new pts 30845, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30844 + pts count: 1 = new pts: 30845. update pts: 30778 < new pts 30845, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30844 + pts count: 1 = new pts: 30845. update pts: 30779 < new pts 30845, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30844 + pts count: 1 = new pts: 30845. update pts: 30808 < new pts 30845, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30844 + pts count: 1 = new pts: 30845. update pts: 30833 < new pts 30845, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1053640 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 915010 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30845 + pts count: 1 = new pts: 30846, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30845 + pts count: 1 = new pts: 30846. update pts: 28115 < new pts 30846, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30845 + pts count: 1 = new pts: 30846. update pts: 30772 < new pts 30846, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30845 + pts count: 1 = new pts: 30846. update pts: 30776 < new pts 30846, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30845 + pts count: 1 = new pts: 30846. update pts: 30778 < new pts 30846, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30845 + pts count: 1 = new pts: 30846. update pts: 30779 < new pts 30846, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30845 + pts count: 1 = new pts: 30846. update pts: 30808 < new pts 30846, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30845 + pts count: 1 = new pts: 30846. update pts: 30833 < new pts 30846, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30846 + pts count: 1 = new pts: 30847. update pts: 28115 < new pts 30847, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30846 + pts count: 1 = new pts: 30847. update pts: 30822 < new pts 30847, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 924021 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1057493 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30846, pts count: 1, new pts: 30847 < update pts: 30848, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30846 + pts count: 1 = new pts: 30847. update pts: 28115 < new pts 30847, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30846 + pts count: 1 = new pts: 30847. update pts: 30822 < new pts 30847, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30850 + pts count: 1 = new pts: 30851. update pts: 28115 < new pts 30851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30850 + pts count: 1 = new pts: 30851. update pts: 30772 < new pts 30851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30850 + pts count: 1 = new pts: 30851. update pts: 30776 < new pts 30851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30850 + pts count: 1 = new pts: 30851. update pts: 30778 < new pts 30851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30850 + pts count: 1 = new pts: 30851. update pts: 30779 < new pts 30851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30850 + pts count: 1 = new pts: 30851. update pts: 30808 < new pts 30851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30850 + pts count: 1 = new pts: 30851. update pts: 30833 < new pts 30851, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 939005 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30850 + pts count: 1 = new pts: 30851. update pts: 28115 < new pts 30851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30850 + pts count: 1 = new pts: 30851. update pts: 30822 < new pts 30851, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1065388 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30850 + pts count: 1 = new pts: 30851. update pts: 28115 < new pts 30851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30850 + pts count: 1 = new pts: 30851. update pts: 30772 < new pts 30851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30850 + pts count: 1 = new pts: 30851. update pts: 30776 < new pts 30851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30850 + pts count: 1 = new pts: 30851. update pts: 30778 < new pts 30851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30850 + pts count: 1 = new pts: 30851. update pts: 30779 < new pts 30851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30850 + pts count: 1 = new pts: 30851. update pts: 30808 < new pts 30851, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30850 + pts count: 1 = new pts: 30851. update pts: 30833 < new pts 30851, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 950646 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1068516 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30852 + pts count: 1 = new pts: 30853. update pts: 28115 < new pts 30853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30852 + pts count: 1 = new pts: 30853. update pts: 30822 < new pts 30853, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30852 + pts count: 1 = new pts: 30853. update pts: 28115 < new pts 30853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30852 + pts count: 1 = new pts: 30853. update pts: 30772 < new pts 30853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30852 + pts count: 1 = new pts: 30853. update pts: 30776 < new pts 30853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30852 + pts count: 1 = new pts: 30853. update pts: 30778 < new pts 30853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30852 + pts count: 1 = new pts: 30853. update pts: 30779 < new pts 30853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30852 + pts count: 1 = new pts: 30853. update pts: 30808 < new pts 30853, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30852 + pts count: 1 = new pts: 30853. update pts: 30833 < new pts 30853, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 964002 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30854 + pts count: 1 = new pts: 30855. update pts: 28115 < new pts 30855, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30854 + pts count: 1 = new pts: 30855. update pts: 30822 < new pts 30855, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1071056 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30854, pts count: 1, new pts: 30855 < update pts: 30856, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30856 + pts count: 1 = new pts: 30857. update pts: 28115 < new pts 30857, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30856 + pts count: 1 = new pts: 30857. update pts: 30772 < new pts 30857, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30856 + pts count: 1 = new pts: 30857. update pts: 30776 < new pts 30857, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30856 + pts count: 1 = new pts: 30857. update pts: 30778 < new pts 30857, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30856 + pts count: 1 = new pts: 30857. update pts: 30779 < new pts 30857, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30856 + pts count: 1 = new pts: 30857. update pts: 30808 < new pts 30857, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30856 + pts count: 1 = new pts: 30857. update pts: 30833 < new pts 30857, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Applying pts. current pts: 184 + pts count: 1 = new pts: 185, channel id: 10084044 -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 973695 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30856 + pts count: 1 = new pts: 30857. update pts: 28115 < new pts 30857, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30856 + pts count: 1 = new pts: 30857. update pts: 30822 < new pts 30857, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1083483 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30856 + pts count: 1 = new pts: 30857. update pts: 28115 < new pts 30857, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30856 + pts count: 1 = new pts: 30857. update pts: 30772 < new pts 30857, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30856 + pts count: 1 = new pts: 30857. update pts: 30776 < new pts 30857, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30856 + pts count: 1 = new pts: 30857. update pts: 30778 < new pts 30857, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30856 + pts count: 1 = new pts: 30857. update pts: 30779 < new pts 30857, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30856 + pts count: 1 = new pts: 30857. update pts: 30808 < new pts 30857, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30856 + pts count: 1 = new pts: 30857. update pts: 30833 < new pts 30857, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30856, pts count: 1, new pts: 30857 < update pts: 30858, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 982142 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30858 + pts count: 1 = new pts: 30859. update pts: 28115 < new pts 30859, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30858 + pts count: 1 = new pts: 30859. update pts: 30822 < new pts 30859, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1090546 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30858 + pts count: 1 = new pts: 30859. update pts: 28115 < new pts 30859, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30858 + pts count: 1 = new pts: 30859. update pts: 30772 < new pts 30859, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30858 + pts count: 1 = new pts: 30859. update pts: 30776 < new pts 30859, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30858 + pts count: 1 = new pts: 30859. update pts: 30778 < new pts 30859, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30858 + pts count: 1 = new pts: 30859. update pts: 30779 < new pts 30859, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30858 + pts count: 1 = new pts: 30859. update pts: 30808 < new pts 30859, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30858 + pts count: 1 = new pts: 30859. update pts: 30833 < new pts 30859, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30858 + pts count: 1 = new pts: 30859. update pts: 30858 < new pts 30859, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30858 + pts count: 1 = new pts: 30859, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 995214 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30860 + pts count: 1 = new pts: 30861. update pts: 28115 < new pts 30861, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30860 + pts count: 1 = new pts: 30861. update pts: 30822 < new pts 30861, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1099829 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1003661 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30862 + pts count: 1 = new pts: 30863. update pts: 28115 < new pts 30863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30862 + pts count: 1 = new pts: 30863. update pts: 30772 < new pts 30863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30862 + pts count: 1 = new pts: 30863. update pts: 30776 < new pts 30863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30862 + pts count: 1 = new pts: 30863. update pts: 30778 < new pts 30863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30862 + pts count: 1 = new pts: 30863. update pts: 30779 < new pts 30863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30862 + pts count: 1 = new pts: 30863. update pts: 30808 < new pts 30863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30862 + pts count: 1 = new pts: 30863. update pts: 30833 < new pts 30863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30862 + pts count: 1 = new pts: 30863. update pts: 30858 < new pts 30863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30862 + pts count: 1 = new pts: 30863. update pts: 30859 < new pts 30863, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30862 + pts count: 1 = new pts: 30863. update pts: 28115 < new pts 30863, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30862 + pts count: 1 = new pts: 30863. update pts: 30822 < new pts 30863, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1101118 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1018582 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30863 + pts count: 1 = new pts: 30864. update pts: 28115 < new pts 30864, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30863 + pts count: 1 = new pts: 30864. update pts: 30772 < new pts 30864, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30863 + pts count: 1 = new pts: 30864. update pts: 30776 < new pts 30864, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30863 + pts count: 1 = new pts: 30864. update pts: 30778 < new pts 30864, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30863 + pts count: 1 = new pts: 30864. update pts: 30779 < new pts 30864, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30863 + pts count: 1 = new pts: 30864. update pts: 30808 < new pts 30864, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30863 + pts count: 1 = new pts: 30864. update pts: 30833 < new pts 30864, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30863 + pts count: 1 = new pts: 30864. update pts: 30858 < new pts 30864, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30863 + pts count: 1 = new pts: 30864. update pts: 30859 < new pts 30864, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30864 + pts count: 1 = new pts: 30865. update pts: 28115 < new pts 30865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30864 + pts count: 1 = new pts: 30865. update pts: 30822 < new pts 30865, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1022432 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1103941 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30864 + pts count: 1 = new pts: 30865. update pts: 28115 < new pts 30865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30864 + pts count: 1 = new pts: 30865. update pts: 30822 < new pts 30865, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30864 + pts count: 1 = new pts: 30865. update pts: 28115 < new pts 30865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30864 + pts count: 1 = new pts: 30865. update pts: 30772 < new pts 30865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30864 + pts count: 1 = new pts: 30865. update pts: 30776 < new pts 30865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30864 + pts count: 1 = new pts: 30865. update pts: 30778 < new pts 30865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30864 + pts count: 1 = new pts: 30865. update pts: 30779 < new pts 30865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30864 + pts count: 1 = new pts: 30865. update pts: 30808 < new pts 30865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30864 + pts count: 1 = new pts: 30865. update pts: 30833 < new pts 30865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30864 + pts count: 1 = new pts: 30865. update pts: 30858 < new pts 30865, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30864 + pts count: 1 = new pts: 30865. update pts: 30859 < new pts 30865, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1032432 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1107559 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30867 + pts count: 1 = new pts: 30868. update pts: 28115 < new pts 30868, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30867 + pts count: 1 = new pts: 30868. update pts: 30822 < new pts 30868, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30867 + pts count: 1 = new pts: 30868. update pts: 28115 < new pts 30868, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30867 + pts count: 1 = new pts: 30868. update pts: 30772 < new pts 30868, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30867 + pts count: 1 = new pts: 30868. update pts: 30776 < new pts 30868, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30867 + pts count: 1 = new pts: 30868. update pts: 30778 < new pts 30868, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30867 + pts count: 1 = new pts: 30868. update pts: 30779 < new pts 30868, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30867 + pts count: 1 = new pts: 30868. update pts: 30808 < new pts 30868, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30867 + pts count: 1 = new pts: 30868. update pts: 30833 < new pts 30868, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30867 + pts count: 1 = new pts: 30868. update pts: 30858 < new pts 30868, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30867 + pts count: 1 = new pts: 30868. update pts: 30859 < new pts 30868, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1046279 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1108728 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30869 + pts count: 1 = new pts: 30870, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30870 + pts count: 1 = new pts: 30871. update pts: 28115 < new pts 30871, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30870 + pts count: 1 = new pts: 30871. update pts: 30822 < new pts 30871, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30869 + pts count: 1 = new pts: 30870. update pts: 28115 < new pts 30870, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30869 + pts count: 1 = new pts: 30870. update pts: 30772 < new pts 30870, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30869 + pts count: 1 = new pts: 30870. update pts: 30776 < new pts 30870, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30869 + pts count: 1 = new pts: 30870. update pts: 30778 < new pts 30870, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30869 + pts count: 1 = new pts: 30870. update pts: 30779 < new pts 30870, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30869 + pts count: 1 = new pts: 30870. update pts: 30808 < new pts 30870, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30869 + pts count: 1 = new pts: 30870. update pts: 30833 < new pts 30870, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30869 + pts count: 1 = new pts: 30870. update pts: 30858 < new pts 30870, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30869 + pts count: 1 = new pts: 30870. update pts: 30859 < new pts 30870, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1058270 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1114197 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30871 + pts count: 1 = new pts: 30872, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30872 + pts count: 1 = new pts: 30873. update pts: 28115 < new pts 30873, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30872 + pts count: 1 = new pts: 30873. update pts: 30772 < new pts 30873, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30872 + pts count: 1 = new pts: 30873. update pts: 30776 < new pts 30873, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30872 + pts count: 1 = new pts: 30873. update pts: 30778 < new pts 30873, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30872 + pts count: 1 = new pts: 30873. update pts: 30779 < new pts 30873, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30872 + pts count: 1 = new pts: 30873. update pts: 30808 < new pts 30873, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30872 + pts count: 1 = new pts: 30873. update pts: 30833 < new pts 30873, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30872 + pts count: 1 = new pts: 30873. update pts: 30858 < new pts 30873, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30872 + pts count: 1 = new pts: 30873. update pts: 30859 < new pts 30873, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30871 + pts count: 1 = new pts: 30872. update pts: 28115 < new pts 30872, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30871 + pts count: 1 = new pts: 30872. update pts: 30822 < new pts 30872, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1119844 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1067900 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30873 + pts count: 1 = new pts: 30874, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 28115 < new pts 30875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 30772 < new pts 30875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 30776 < new pts 30875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 30778 < new pts 30875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 30779 < new pts 30875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 30808 < new pts 30875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 30833 < new pts 30875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 30858 < new pts 30875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 30859 < new pts 30875, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30873 + pts count: 1 = new pts: 30874. update pts: 28115 < new pts 30874, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30873 + pts count: 1 = new pts: 30874. update pts: 30822 < new pts 30874, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1123017 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1082821 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 28115 < new pts 30875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 30772 < new pts 30875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 30776 < new pts 30875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 30778 < new pts 30875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 30779 < new pts 30875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 30808 < new pts 30875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 30833 < new pts 30875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 30858 < new pts 30875, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30874 + pts count: 1 = new pts: 30875. update pts: 30859 < new pts 30875, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30875 + pts count: 1 = new pts: 30876. update pts: 28115 < new pts 30876, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30875 + pts count: 1 = new pts: 30876. update pts: 30822 < new pts 30876, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1126756 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1086376 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30875 + pts count: 1 = new pts: 30876, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30876 + pts count: 1 = new pts: 30877. update pts: 28115 < new pts 30877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30876 + pts count: 1 = new pts: 30877. update pts: 30772 < new pts 30877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30876 + pts count: 1 = new pts: 30877. update pts: 30776 < new pts 30877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30876 + pts count: 1 = new pts: 30877. update pts: 30778 < new pts 30877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30876 + pts count: 1 = new pts: 30877. update pts: 30779 < new pts 30877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30876 + pts count: 1 = new pts: 30877. update pts: 30808 < new pts 30877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30876 + pts count: 1 = new pts: 30877. update pts: 30833 < new pts 30877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30876 + pts count: 1 = new pts: 30877. update pts: 30858 < new pts 30877, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30876 + pts count: 1 = new pts: 30877. update pts: 30859 < new pts 30877, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30875 + pts count: 1 = new pts: 30876. update pts: 28115 < new pts 30876, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30875 + pts count: 1 = new pts: 30876. update pts: 30822 < new pts 30876, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1128936 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1089721 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30877 + pts count: 1 = new pts: 30878. update pts: 28115 < new pts 30878, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30877 + pts count: 1 = new pts: 30878. update pts: 30772 < new pts 30878, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30877 + pts count: 1 = new pts: 30878. update pts: 30776 < new pts 30878, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30877 + pts count: 1 = new pts: 30878. update pts: 30778 < new pts 30878, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30877 + pts count: 1 = new pts: 30878. update pts: 30779 < new pts 30878, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30877 + pts count: 1 = new pts: 30878. update pts: 30808 < new pts 30878, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30877 + pts count: 1 = new pts: 30878. update pts: 30833 < new pts 30878, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30877 + pts count: 1 = new pts: 30878. update pts: 30858 < new pts 30878, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30877 + pts count: 1 = new pts: 30878. update pts: 30859 < new pts 30878, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30877 + pts count: 1 = new pts: 30878. update pts: 28115 < new pts 30878, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30877 + pts count: 1 = new pts: 30878. update pts: 30822 < new pts 30878, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1129292 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30878 + pts count: 1 = new pts: 30879, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30879 + pts count: 1 = new pts: 30880. update pts: 28115 < new pts 30880, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30879 + pts count: 1 = new pts: 30880. update pts: 30772 < new pts 30880, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30879 + pts count: 1 = new pts: 30880. update pts: 30776 < new pts 30880, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30879 + pts count: 1 = new pts: 30880. update pts: 30778 < new pts 30880, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30879 + pts count: 1 = new pts: 30880. update pts: 30779 < new pts 30880, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30879 + pts count: 1 = new pts: 30880. update pts: 30808 < new pts 30880, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30879 + pts count: 1 = new pts: 30880. update pts: 30833 < new pts 30880, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30879 + pts count: 1 = new pts: 30880. update pts: 30858 < new pts 30880, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30879 + pts count: 1 = new pts: 30880. update pts: 30859 < new pts 30880, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1095870 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30881 + pts count: 1 = new pts: 30882. update pts: 28115 < new pts 30882, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30881 + pts count: 1 = new pts: 30882. update pts: 30822 < new pts 30882, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1127925 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30882 + pts count: 1 = new pts: 30883. update pts: 28115 < new pts 30883, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30882 + pts count: 1 = new pts: 30883. update pts: 30772 < new pts 30883, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30882 + pts count: 1 = new pts: 30883. update pts: 30776 < new pts 30883, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30882 + pts count: 1 = new pts: 30883. update pts: 30778 < new pts 30883, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30882 + pts count: 1 = new pts: 30883. update pts: 30779 < new pts 30883, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30882 + pts count: 1 = new pts: 30883. update pts: 30808 < new pts 30883, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30882 + pts count: 1 = new pts: 30883. update pts: 30833 < new pts 30883, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30882 + pts count: 1 = new pts: 30883. update pts: 30858 < new pts 30883, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30882 + pts count: 1 = new pts: 30883. update pts: 30859 < new pts 30883, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1098050 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30883 + pts count: 1 = new pts: 30884. update pts: 28115 < new pts 30884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30883 + pts count: 1 = new pts: 30884. update pts: 30822 < new pts 30884, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1131770 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30883 + pts count: 1 = new pts: 30884. update pts: 28115 < new pts 30884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30883 + pts count: 1 = new pts: 30884. update pts: 30772 < new pts 30884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30883 + pts count: 1 = new pts: 30884. update pts: 30776 < new pts 30884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30883 + pts count: 1 = new pts: 30884. update pts: 30778 < new pts 30884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30883 + pts count: 1 = new pts: 30884. update pts: 30779 < new pts 30884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30883 + pts count: 1 = new pts: 30884. update pts: 30808 < new pts 30884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30883 + pts count: 1 = new pts: 30884. update pts: 30833 < new pts 30884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30883 + pts count: 1 = new pts: 30884. update pts: 30858 < new pts 30884, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30883 + pts count: 1 = new pts: 30884. update pts: 30859 < new pts 30884, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1099969 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30884, pts count: 1, new pts: 30885 < update pts: 30886, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30886 + pts count: 1 = new pts: 30887. update pts: 28115 < new pts 30887, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30886 + pts count: 1 = new pts: 30887. update pts: 30822 < new pts 30887, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30886 + pts count: 1 = new pts: 30887. update pts: 30885 < new pts 30887, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1136347 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30887 + pts count: 1 = new pts: 30888, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30888 + pts count: 1 = new pts: 30889. update pts: 28115 < new pts 30889, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30888 + pts count: 1 = new pts: 30889. update pts: 30772 < new pts 30889, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30888 + pts count: 1 = new pts: 30889. update pts: 30776 < new pts 30889, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30888 + pts count: 1 = new pts: 30889. update pts: 30778 < new pts 30889, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30888 + pts count: 1 = new pts: 30889. update pts: 30779 < new pts 30889, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30888 + pts count: 1 = new pts: 30889. update pts: 30808 < new pts 30889, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30888 + pts count: 1 = new pts: 30889. update pts: 30833 < new pts 30889, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30888 + pts count: 1 = new pts: 30889. update pts: 30858 < new pts 30889, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30888 + pts count: 1 = new pts: 30889. update pts: 30859 < new pts 30889, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1105820 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30887 + pts count: 1 = new pts: 30888. update pts: 28115 < new pts 30888, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30887 + pts count: 1 = new pts: 30888. update pts: 30822 < new pts 30888, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30887 + pts count: 1 = new pts: 30888. update pts: 30885 < new pts 30888, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1135342 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1114371 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30889 + pts count: 1 = new pts: 30890. update pts: 28115 < new pts 30890, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30889 + pts count: 1 = new pts: 30890. update pts: 30772 < new pts 30890, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30889 + pts count: 1 = new pts: 30890. update pts: 30776 < new pts 30890, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30889 + pts count: 1 = new pts: 30890. update pts: 30778 < new pts 30890, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30889 + pts count: 1 = new pts: 30890. update pts: 30779 < new pts 30890, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30889 + pts count: 1 = new pts: 30890. update pts: 30808 < new pts 30890, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30889 + pts count: 1 = new pts: 30890. update pts: 30833 < new pts 30890, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30889 + pts count: 1 = new pts: 30890. update pts: 30858 < new pts 30890, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30889 + pts count: 1 = new pts: 30890. update pts: 30859 < new pts 30890, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30890 + pts count: 1 = new pts: 30891. update pts: 28115 < new pts 30891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30890 + pts count: 1 = new pts: 30891. update pts: 30822 < new pts 30891, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30890 + pts count: 1 = new pts: 30891. update pts: 30885 < new pts 30891, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1139234 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1114178 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30891 + pts count: 1 = new pts: 30892. update pts: 28115 < new pts 30892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30891 + pts count: 1 = new pts: 30892. update pts: 30772 < new pts 30892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30891 + pts count: 1 = new pts: 30892. update pts: 30776 < new pts 30892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30891 + pts count: 1 = new pts: 30892. update pts: 30778 < new pts 30892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30891 + pts count: 1 = new pts: 30892. update pts: 30779 < new pts 30892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30891 + pts count: 1 = new pts: 30892. update pts: 30808 < new pts 30892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30891 + pts count: 1 = new pts: 30892. update pts: 30833 < new pts 30892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30891 + pts count: 1 = new pts: 30892. update pts: 30858 < new pts 30892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30891 + pts count: 1 = new pts: 30892. update pts: 30859 < new pts 30892, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30891 + pts count: 1 = new pts: 30892, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30892 + pts count: 1 = new pts: 30893. update pts: 28115 < new pts 30893, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30892 + pts count: 1 = new pts: 30893. update pts: 30822 < new pts 30893, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30892 + pts count: 1 = new pts: 30893. update pts: 30885 < new pts 30893, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1146415 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1114242 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30893 + pts count: 1 = new pts: 30894, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 28115 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30772 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30776 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30778 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30779 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30808 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30833 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30858 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30859 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30892 < new pts 30895, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30893 + pts count: 1 = new pts: 30894. update pts: 28115 < new pts 30894, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30893 + pts count: 1 = new pts: 30894. update pts: 30822 < new pts 30894, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30893 + pts count: 1 = new pts: 30894. update pts: 30885 < new pts 30894, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1144520 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1117769 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 28115 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30772 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30776 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30778 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30779 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30808 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30833 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30858 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30859 < new pts 30895, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30894 + pts count: 1 = new pts: 30895. update pts: 30892 < new pts 30895, channel id: -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30895 + pts count: 1 = new pts: 30896. update pts: 28115 < new pts 30896, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30895 + pts count: 1 = new pts: 30896. update pts: 30822 < new pts 30896, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30895 + pts count: 1 = new pts: 30896. update pts: 30885 < new pts 30896, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1146917 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1120202 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30897 + pts count: 1 = new pts: 30898. update pts: 28115 < new pts 30898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30897 + pts count: 1 = new pts: 30898. update pts: 30772 < new pts 30898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30897 + pts count: 1 = new pts: 30898. update pts: 30776 < new pts 30898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30897 + pts count: 1 = new pts: 30898. update pts: 30778 < new pts 30898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30897 + pts count: 1 = new pts: 30898. update pts: 30779 < new pts 30898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30897 + pts count: 1 = new pts: 30898. update pts: 30808 < new pts 30898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30897 + pts count: 1 = new pts: 30898. update pts: 30833 < new pts 30898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30897 + pts count: 1 = new pts: 30898. update pts: 30858 < new pts 30898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30897 + pts count: 1 = new pts: 30898. update pts: 30859 < new pts 30898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30897 + pts count: 1 = new pts: 30898. update pts: 30892 < new pts 30898, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30897 + pts count: 1 = new pts: 30898. update pts: 28115 < new pts 30898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30897 + pts count: 1 = new pts: 30898. update pts: 30822 < new pts 30898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30897 + pts count: 1 = new pts: 30898. update pts: 30885 < new pts 30898, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30897 + pts count: 1 = new pts: 30898, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1150039 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1125067 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30900 + pts count: 1 = new pts: 30901. update pts: 28115 < new pts 30901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30900 + pts count: 1 = new pts: 30901. update pts: 30772 < new pts 30901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30900 + pts count: 1 = new pts: 30901. update pts: 30776 < new pts 30901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30900 + pts count: 1 = new pts: 30901. update pts: 30778 < new pts 30901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30900 + pts count: 1 = new pts: 30901. update pts: 30779 < new pts 30901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30900 + pts count: 1 = new pts: 30901. update pts: 30808 < new pts 30901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30900 + pts count: 1 = new pts: 30901. update pts: 30833 < new pts 30901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30900 + pts count: 1 = new pts: 30901. update pts: 30858 < new pts 30901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30900 + pts count: 1 = new pts: 30901. update pts: 30859 < new pts 30901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30900 + pts count: 1 = new pts: 30901. update pts: 30892 < new pts 30901, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30900 + pts count: 1 = new pts: 30901. update pts: 28115 < new pts 30901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30900 + pts count: 1 = new pts: 30901. update pts: 30822 < new pts 30901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30900 + pts count: 1 = new pts: 30901. update pts: 30885 < new pts 30901, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30900 + pts count: 1 = new pts: 30901. update pts: 30898 < new pts 30901, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1127747 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1147838 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30901 + pts count: 1 = new pts: 30902. update pts: 28115 < new pts 30902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30901 + pts count: 1 = new pts: 30902. update pts: 30822 < new pts 30902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30901 + pts count: 1 = new pts: 30902. update pts: 30885 < new pts 30902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30901 + pts count: 1 = new pts: 30902. update pts: 30898 < new pts 30902, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30901 + pts count: 1 = new pts: 30902. update pts: 28115 < new pts 30902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30901 + pts count: 1 = new pts: 30902. update pts: 30772 < new pts 30902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30901 + pts count: 1 = new pts: 30902. update pts: 30776 < new pts 30902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30901 + pts count: 1 = new pts: 30902. update pts: 30778 < new pts 30902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30901 + pts count: 1 = new pts: 30902. update pts: 30779 < new pts 30902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30901 + pts count: 1 = new pts: 30902. update pts: 30808 < new pts 30902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30901 + pts count: 1 = new pts: 30902. update pts: 30833 < new pts 30902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30901 + pts count: 1 = new pts: 30902. update pts: 30858 < new pts 30902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30901 + pts count: 1 = new pts: 30902. update pts: 30859 < new pts 30902, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30901 + pts count: 1 = new pts: 30902. update pts: 30892 < new pts 30902, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1129695 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1153125 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30904 + pts count: 1 = new pts: 30905. update pts: 28115 < new pts 30905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30904 + pts count: 1 = new pts: 30905. update pts: 30822 < new pts 30905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30904 + pts count: 1 = new pts: 30905. update pts: 30885 < new pts 30905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30904 + pts count: 1 = new pts: 30905. update pts: 30898 < new pts 30905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30904 + pts count: 1 = new pts: 30905. update pts: 30904 < new pts 30905, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30904 + pts count: 1 = new pts: 30905. update pts: 28115 < new pts 30905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30904 + pts count: 1 = new pts: 30905. update pts: 30772 < new pts 30905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30904 + pts count: 1 = new pts: 30905. update pts: 30776 < new pts 30905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30904 + pts count: 1 = new pts: 30905. update pts: 30778 < new pts 30905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30904 + pts count: 1 = new pts: 30905. update pts: 30779 < new pts 30905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30904 + pts count: 1 = new pts: 30905. update pts: 30808 < new pts 30905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30904 + pts count: 1 = new pts: 30905. update pts: 30833 < new pts 30905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30904 + pts count: 1 = new pts: 30905. update pts: 30858 < new pts 30905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30904 + pts count: 1 = new pts: 30905. update pts: 30859 < new pts 30905, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30904 + pts count: 1 = new pts: 30905. update pts: 30892 < new pts 30905, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1133155 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1153862 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30905 + pts count: 1 = new pts: 30906, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30906 + pts count: 1 = new pts: 30907. update pts: 28115 < new pts 30907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30906 + pts count: 1 = new pts: 30907. update pts: 30822 < new pts 30907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30906 + pts count: 1 = new pts: 30907. update pts: 30885 < new pts 30907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30906 + pts count: 1 = new pts: 30907. update pts: 30898 < new pts 30907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30906 + pts count: 1 = new pts: 30907. update pts: 30904 < new pts 30907, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30905 + pts count: 1 = new pts: 30906. update pts: 28115 < new pts 30906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30905 + pts count: 1 = new pts: 30906. update pts: 30772 < new pts 30906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30905 + pts count: 1 = new pts: 30906. update pts: 30776 < new pts 30906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30905 + pts count: 1 = new pts: 30906. update pts: 30778 < new pts 30906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30905 + pts count: 1 = new pts: 30906. update pts: 30779 < new pts 30906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30905 + pts count: 1 = new pts: 30906. update pts: 30808 < new pts 30906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30905 + pts count: 1 = new pts: 30906. update pts: 30833 < new pts 30906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30905 + pts count: 1 = new pts: 30906. update pts: 30858 < new pts 30906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30905 + pts count: 1 = new pts: 30906. update pts: 30859 < new pts 30906, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30905 + pts count: 1 = new pts: 30906. update pts: 30892 < new pts 30906, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1134219 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30906 + pts count: 1 = new pts: 30907. update pts: 28115 < new pts 30907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30906 + pts count: 1 = new pts: 30907. update pts: 30822 < new pts 30907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30906 + pts count: 1 = new pts: 30907. update pts: 30885 < new pts 30907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30906 + pts count: 1 = new pts: 30907. update pts: 30898 < new pts 30907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30906 + pts count: 1 = new pts: 30907. update pts: 30904 < new pts 30907, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1153643 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -Wrote 1134101 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30907 + pts count: 1 = new pts: 30908. update pts: 28115 < new pts 30908, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30907 + pts count: 1 = new pts: 30908. update pts: 30772 < new pts 30908, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30907 + pts count: 1 = new pts: 30908. update pts: 30776 < new pts 30908, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30907 + pts count: 1 = new pts: 30908. update pts: 30778 < new pts 30908, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30907 + pts count: 1 = new pts: 30908. update pts: 30779 < new pts 30908, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30907 + pts count: 1 = new pts: 30908. update pts: 30808 < new pts 30908, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30907 + pts count: 1 = new pts: 30908. update pts: 30833 < new pts 30908, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30907 + pts count: 1 = new pts: 30908. update pts: 30858 < new pts 30908, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30907 + pts count: 1 = new pts: 30908. update pts: 30859 < new pts 30908, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30907 + pts count: 1 = new pts: 30908. update pts: 30892 < new pts 30908, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30907 + pts count: 1 = new pts: 30908, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30908 + pts count: 1 = new pts: 30909, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30910 + pts count: 1 = new pts: 30911. update pts: 28115 < new pts 30911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30910 + pts count: 1 = new pts: 30911. update pts: 30822 < new pts 30911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30910 + pts count: 1 = new pts: 30911. update pts: 30885 < new pts 30911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30910 + pts count: 1 = new pts: 30911. update pts: 30898 < new pts 30911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30910 + pts count: 1 = new pts: 30911. update pts: 30904 < new pts 30911, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30910 + pts count: 1 = new pts: 30911, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1155845 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -Wrote 1133841 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 28115 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 30772 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 30776 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 30778 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 30779 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 30808 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 30833 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 30858 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 30859 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 30892 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 30908 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 30909 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 28115 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 30822 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 30885 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 30898 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 30904 < new pts 30912, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30911 + pts count: 1 = new pts: 30912. update pts: 30911 < new pts 30912, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1156227 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1135035 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 28115 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 30772 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 30776 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 30778 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 30779 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 30808 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 30833 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 30858 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 30859 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 30892 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 30908 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 30909 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 28115 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 30822 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 30885 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 30898 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 30904 < new pts 30913, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30912 + pts count: 1 = new pts: 30913. update pts: 30911 < new pts 30913, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1155387 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1135241 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 28115 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30772 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30776 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30778 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30779 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30808 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30833 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30858 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30859 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30892 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30908 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30909 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 28115 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30822 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30885 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30898 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30904 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30911 < new pts 30914, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1150767 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1136282 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 28115 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30772 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30776 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30778 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30779 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30808 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30833 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30858 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30859 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30892 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30908 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30913 + pts count: 1 = new pts: 30914. update pts: 30909 < new pts 30914, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30913 + pts count: 1 = new pts: 30914, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30915 + pts count: 1 = new pts: 30916. update pts: 28115 < new pts 30916, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30915 + pts count: 1 = new pts: 30916. update pts: 30822 < new pts 30916, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30915 + pts count: 1 = new pts: 30916. update pts: 30885 < new pts 30916, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30915 + pts count: 1 = new pts: 30916. update pts: 30898 < new pts 30916, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30915 + pts count: 1 = new pts: 30916. update pts: 30904 < new pts 30916, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30915 + pts count: 1 = new pts: 30916. update pts: 30911 < new pts 30916, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1159243 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1140635 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30917 + pts count: 1 = new pts: 30918. update pts: 28115 < new pts 30918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30917 + pts count: 1 = new pts: 30918. update pts: 30772 < new pts 30918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30917 + pts count: 1 = new pts: 30918. update pts: 30776 < new pts 30918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30917 + pts count: 1 = new pts: 30918. update pts: 30778 < new pts 30918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30917 + pts count: 1 = new pts: 30918. update pts: 30779 < new pts 30918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30917 + pts count: 1 = new pts: 30918. update pts: 30808 < new pts 30918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30917 + pts count: 1 = new pts: 30918. update pts: 30833 < new pts 30918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30917 + pts count: 1 = new pts: 30918. update pts: 30858 < new pts 30918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30917 + pts count: 1 = new pts: 30918. update pts: 30859 < new pts 30918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30917 + pts count: 1 = new pts: 30918. update pts: 30892 < new pts 30918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30917 + pts count: 1 = new pts: 30918. update pts: 30908 < new pts 30918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30917 + pts count: 1 = new pts: 30918. update pts: 30909 < new pts 30918, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30917 + pts count: 1 = new pts: 30918. update pts: 30914 < new pts 30918, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30918 + pts count: 1 = new pts: 30919. update pts: 28115 < new pts 30919, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30918 + pts count: 1 = new pts: 30919. update pts: 30822 < new pts 30919, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30918 + pts count: 1 = new pts: 30919. update pts: 30885 < new pts 30919, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30918 + pts count: 1 = new pts: 30919. update pts: 30898 < new pts 30919, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30918 + pts count: 1 = new pts: 30919. update pts: 30904 < new pts 30919, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30918 + pts count: 1 = new pts: 30919. update pts: 30911 < new pts 30919, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30918 + pts count: 1 = new pts: 30919, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1162328 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30919, pts count: 1, new pts: 30920 < update pts: 30921, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1144266 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30921 + pts count: 1 = new pts: 30922. update pts: 28115 < new pts 30922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30921 + pts count: 1 = new pts: 30922. update pts: 30772 < new pts 30922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30921 + pts count: 1 = new pts: 30922. update pts: 30776 < new pts 30922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30921 + pts count: 1 = new pts: 30922. update pts: 30778 < new pts 30922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30921 + pts count: 1 = new pts: 30922. update pts: 30779 < new pts 30922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30921 + pts count: 1 = new pts: 30922. update pts: 30808 < new pts 30922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30921 + pts count: 1 = new pts: 30922. update pts: 30833 < new pts 30922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30921 + pts count: 1 = new pts: 30922. update pts: 30858 < new pts 30922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30921 + pts count: 1 = new pts: 30922. update pts: 30859 < new pts 30922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30921 + pts count: 1 = new pts: 30922. update pts: 30892 < new pts 30922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30921 + pts count: 1 = new pts: 30922. update pts: 30908 < new pts 30922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30921 + pts count: 1 = new pts: 30922. update pts: 30909 < new pts 30922, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30921 + pts count: 1 = new pts: 30922. update pts: 30914 < new pts 30922, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30920 + pts count: 1 = new pts: 30921. update pts: 28115 < new pts 30921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30920 + pts count: 1 = new pts: 30921. update pts: 30822 < new pts 30921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30920 + pts count: 1 = new pts: 30921. update pts: 30885 < new pts 30921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30920 + pts count: 1 = new pts: 30921. update pts: 30898 < new pts 30921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30920 + pts count: 1 = new pts: 30921. update pts: 30904 < new pts 30921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30920 + pts count: 1 = new pts: 30921. update pts: 30911 < new pts 30921, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30920 + pts count: 1 = new pts: 30921. update pts: 30919 < new pts 30921, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1167412 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30922 + pts count: 1 = new pts: 30923, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30923 + pts count: 1 = new pts: 30924. update pts: 28115 < new pts 30924, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30923 + pts count: 1 = new pts: 30924. update pts: 30772 < new pts 30924, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30923 + pts count: 1 = new pts: 30924. update pts: 30776 < new pts 30924, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30923 + pts count: 1 = new pts: 30924. update pts: 30778 < new pts 30924, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30923 + pts count: 1 = new pts: 30924. update pts: 30779 < new pts 30924, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30923 + pts count: 1 = new pts: 30924. update pts: 30808 < new pts 30924, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30923 + pts count: 1 = new pts: 30924. update pts: 30833 < new pts 30924, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30923 + pts count: 1 = new pts: 30924. update pts: 30858 < new pts 30924, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30923 + pts count: 1 = new pts: 30924. update pts: 30859 < new pts 30924, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30923 + pts count: 1 = new pts: 30924. update pts: 30892 < new pts 30924, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30923 + pts count: 1 = new pts: 30924. update pts: 30908 < new pts 30924, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30923 + pts count: 1 = new pts: 30924. update pts: 30909 < new pts 30924, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30923 + pts count: 1 = new pts: 30924. update pts: 30914 < new pts 30924, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30923 + pts count: 1 = new pts: 30924. update pts: 30922 < new pts 30924, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1147327 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30922 + pts count: 1 = new pts: 30923. update pts: 28115 < new pts 30923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30922 + pts count: 1 = new pts: 30923. update pts: 30822 < new pts 30923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30922 + pts count: 1 = new pts: 30923. update pts: 30885 < new pts 30923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30922 + pts count: 1 = new pts: 30923. update pts: 30898 < new pts 30923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30922 + pts count: 1 = new pts: 30923. update pts: 30904 < new pts 30923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30922 + pts count: 1 = new pts: 30923. update pts: 30911 < new pts 30923, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30922 + pts count: 1 = new pts: 30923. update pts: 30919 < new pts 30923, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1173107 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30924 + pts count: 1 = new pts: 30925. update pts: 28115 < new pts 30925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30924 + pts count: 1 = new pts: 30925. update pts: 30772 < new pts 30925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30924 + pts count: 1 = new pts: 30925. update pts: 30776 < new pts 30925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30924 + pts count: 1 = new pts: 30925. update pts: 30778 < new pts 30925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30924 + pts count: 1 = new pts: 30925. update pts: 30779 < new pts 30925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30924 + pts count: 1 = new pts: 30925. update pts: 30808 < new pts 30925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30924 + pts count: 1 = new pts: 30925. update pts: 30833 < new pts 30925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30924 + pts count: 1 = new pts: 30925. update pts: 30858 < new pts 30925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30924 + pts count: 1 = new pts: 30925. update pts: 30859 < new pts 30925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30924 + pts count: 1 = new pts: 30925. update pts: 30892 < new pts 30925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30924 + pts count: 1 = new pts: 30925. update pts: 30908 < new pts 30925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30924 + pts count: 1 = new pts: 30925. update pts: 30909 < new pts 30925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30924 + pts count: 1 = new pts: 30925. update pts: 30914 < new pts 30925, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30924 + pts count: 1 = new pts: 30925. update pts: 30922 < new pts 30925, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1151477 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 28115 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30822 < new pts 30926, channel id: -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30885 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30898 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30904 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30911 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30919 < new pts 30926, channel id: -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1173270 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 28115 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30772 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30776 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30778 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30779 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30808 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30833 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 185 + pts count: 1 = new pts: 186. update pts: 185 < new pts 186, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30858 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30859 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30892 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30908 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30909 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30914 < new pts 30926, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30925 + pts count: 1 = new pts: 30926. update pts: 30922 < new pts 30926, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1150904 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30926 + pts count: 1 = new pts: 30927. update pts: 28115 < new pts 30927, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30926 + pts count: 1 = new pts: 30927. update pts: 30822 < new pts 30927, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30926 + pts count: 1 = new pts: 30927. update pts: 30885 < new pts 30927, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30926 + pts count: 1 = new pts: 30927. update pts: 30898 < new pts 30927, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30926 + pts count: 1 = new pts: 30927. update pts: 30904 < new pts 30927, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30926 + pts count: 1 = new pts: 30927. update pts: 30911 < new pts 30927, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30926 + pts count: 1 = new pts: 30927. update pts: 30919 < new pts 30927, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1179345 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30927 + pts count: 1 = new pts: 30928, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Applying pts. current pts: 185 + pts count: 1 = new pts: 186, channel id: 10084044 -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -Exception, danogentili: Undefined index: InputChannel in PeerHandler.php:292 -PeerHandler, danogentili: Undefined index: InputChannel -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30928 + pts count: 1 = new pts: 30929. update pts: 28115 < new pts 30929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30928 + pts count: 1 = new pts: 30929. update pts: 30772 < new pts 30929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30928 + pts count: 1 = new pts: 30929. update pts: 30776 < new pts 30929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30928 + pts count: 1 = new pts: 30929. update pts: 30778 < new pts 30929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30928 + pts count: 1 = new pts: 30929. update pts: 30779 < new pts 30929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30928 + pts count: 1 = new pts: 30929. update pts: 30808 < new pts 30929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30928 + pts count: 1 = new pts: 30929. update pts: 30833 < new pts 30929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30928 + pts count: 1 = new pts: 30929. update pts: 30858 < new pts 30929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30928 + pts count: 1 = new pts: 30929. update pts: 30859 < new pts 30929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30928 + pts count: 1 = new pts: 30929. update pts: 30892 < new pts 30929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30928 + pts count: 1 = new pts: 30929. update pts: 30908 < new pts 30929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30928 + pts count: 1 = new pts: 30929. update pts: 30909 < new pts 30929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30928 + pts count: 1 = new pts: 30929. update pts: 30914 < new pts 30929, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30928 + pts count: 1 = new pts: 30929. update pts: 30922 < new pts 30929, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Pts hole. current pts: 181, pts count: 1, new pts: 182 < update pts: 186, channel id: 10084044 -CallHandler, danogentili: Calling method (try number 1 for updates.getChannelDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.channelDifference -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Saving an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -Exception, danogentili: Undefined index: InputChannel in PeerHandler.php:292 -PeerHandler, danogentili: Undefined index: InputChannel -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1163744 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30928, pts count: 1, new pts: 30929 < update pts: 30930, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1184036 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30929, pts count: 1, new pts: 30930 < update pts: 30931, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 28115 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30822 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30885 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30898 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30904 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30911 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30919 < new pts 30932, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 28115 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30772 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30776 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30778 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30779 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30808 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30833 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30858 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30859 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30892 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30908 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30909 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30914 < new pts 30932, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30931 + pts count: 1 = new pts: 30932. update pts: 30922 < new pts 30932, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -Wrote 1169069 bytes -AuthKeyHandler, danogentili: Calling 217270... -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30931 + pts count: 1 = new pts: 30932, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30932 + pts count: 1 = new pts: 30933. update pts: 28115 < new pts 30933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30932 + pts count: 1 = new pts: 30933. update pts: 30822 < new pts 30933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30932 + pts count: 1 = new pts: 30933. update pts: 30885 < new pts 30933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30932 + pts count: 1 = new pts: 30933. update pts: 30898 < new pts 30933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30932 + pts count: 1 = new pts: 30933. update pts: 30904 < new pts 30933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30932 + pts count: 1 = new pts: 30933. update pts: 30911 < new pts 30933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30932 + pts count: 1 = new pts: 30933. update pts: 30919 < new pts 30933, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1184087 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30931, pts count: 1, new pts: 30932 < update pts: 30933, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1168699 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30933 + pts count: 1 = new pts: 30934. update pts: 28115 < new pts 30934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30933 + pts count: 1 = new pts: 30934. update pts: 30772 < new pts 30934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30933 + pts count: 1 = new pts: 30934. update pts: 30776 < new pts 30934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30933 + pts count: 1 = new pts: 30934. update pts: 30778 < new pts 30934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30933 + pts count: 1 = new pts: 30934. update pts: 30779 < new pts 30934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30933 + pts count: 1 = new pts: 30934. update pts: 30808 < new pts 30934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30933 + pts count: 1 = new pts: 30934. update pts: 30833 < new pts 30934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30933 + pts count: 1 = new pts: 30934. update pts: 30858 < new pts 30934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30933 + pts count: 1 = new pts: 30934. update pts: 30859 < new pts 30934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30933 + pts count: 1 = new pts: 30934. update pts: 30892 < new pts 30934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30933 + pts count: 1 = new pts: 30934. update pts: 30908 < new pts 30934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30933 + pts count: 1 = new pts: 30934. update pts: 30909 < new pts 30934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30933 + pts count: 1 = new pts: 30934. update pts: 30914 < new pts 30934, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30933 + pts count: 1 = new pts: 30934. update pts: 30922 < new pts 30934, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30932 + pts count: 1 = new pts: 30933. update pts: 28115 < new pts 30933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30932 + pts count: 1 = new pts: 30933. update pts: 30822 < new pts 30933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30932 + pts count: 1 = new pts: 30933. update pts: 30885 < new pts 30933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30932 + pts count: 1 = new pts: 30933. update pts: 30898 < new pts 30933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30932 + pts count: 1 = new pts: 30933. update pts: 30904 < new pts 30933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30932 + pts count: 1 = new pts: 30933. update pts: 30911 < new pts 30933, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30932 + pts count: 1 = new pts: 30933. update pts: 30919 < new pts 30933, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1190747 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1174005 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30934 + pts count: 1 = new pts: 30935. update pts: 28115 < new pts 30935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30934 + pts count: 1 = new pts: 30935. update pts: 30772 < new pts 30935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30934 + pts count: 1 = new pts: 30935. update pts: 30776 < new pts 30935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30934 + pts count: 1 = new pts: 30935. update pts: 30778 < new pts 30935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30934 + pts count: 1 = new pts: 30935. update pts: 30779 < new pts 30935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30934 + pts count: 1 = new pts: 30935. update pts: 30808 < new pts 30935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30934 + pts count: 1 = new pts: 30935. update pts: 30833 < new pts 30935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30934 + pts count: 1 = new pts: 30935. update pts: 30858 < new pts 30935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30934 + pts count: 1 = new pts: 30935. update pts: 30859 < new pts 30935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30934 + pts count: 1 = new pts: 30935. update pts: 30892 < new pts 30935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30934 + pts count: 1 = new pts: 30935. update pts: 30908 < new pts 30935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30934 + pts count: 1 = new pts: 30935. update pts: 30909 < new pts 30935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30934 + pts count: 1 = new pts: 30935. update pts: 30914 < new pts 30935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30934 + pts count: 1 = new pts: 30935. update pts: 30922 < new pts 30935, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30934 + pts count: 1 = new pts: 30935, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30935 + pts count: 1 = new pts: 30936. update pts: 28115 < new pts 30936, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30935 + pts count: 1 = new pts: 30936. update pts: 30822 < new pts 30936, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30935 + pts count: 1 = new pts: 30936. update pts: 30885 < new pts 30936, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30935 + pts count: 1 = new pts: 30936. update pts: 30898 < new pts 30936, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30935 + pts count: 1 = new pts: 30936. update pts: 30904 < new pts 30936, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30935 + pts count: 1 = new pts: 30936. update pts: 30911 < new pts 30936, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30935 + pts count: 1 = new pts: 30936. update pts: 30919 < new pts 30936, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1193747 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1174557 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30936 + pts count: 1 = new pts: 30937, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30937 + pts count: 1 = new pts: 30938. update pts: 28115 < new pts 30938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30937 + pts count: 1 = new pts: 30938. update pts: 30772 < new pts 30938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30937 + pts count: 1 = new pts: 30938. update pts: 30776 < new pts 30938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30937 + pts count: 1 = new pts: 30938. update pts: 30778 < new pts 30938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30937 + pts count: 1 = new pts: 30938. update pts: 30779 < new pts 30938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30937 + pts count: 1 = new pts: 30938. update pts: 30808 < new pts 30938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30937 + pts count: 1 = new pts: 30938. update pts: 30833 < new pts 30938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30937 + pts count: 1 = new pts: 30938. update pts: 30858 < new pts 30938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30937 + pts count: 1 = new pts: 30938. update pts: 30859 < new pts 30938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30937 + pts count: 1 = new pts: 30938. update pts: 30892 < new pts 30938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30937 + pts count: 1 = new pts: 30938. update pts: 30908 < new pts 30938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30937 + pts count: 1 = new pts: 30938. update pts: 30909 < new pts 30938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30937 + pts count: 1 = new pts: 30938. update pts: 30914 < new pts 30938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30937 + pts count: 1 = new pts: 30938. update pts: 30922 < new pts 30938, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30937 + pts count: 1 = new pts: 30938. update pts: 30935 < new pts 30938, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30936 + pts count: 1 = new pts: 30937. update pts: 28115 < new pts 30937, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30936 + pts count: 1 = new pts: 30937. update pts: 30822 < new pts 30937, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30936 + pts count: 1 = new pts: 30937. update pts: 30885 < new pts 30937, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30936 + pts count: 1 = new pts: 30937. update pts: 30898 < new pts 30937, channel id: -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30936 + pts count: 1 = new pts: 30937. update pts: 30904 < new pts 30937, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30936 + pts count: 1 = new pts: 30937. update pts: 30911 < new pts 30937, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30936 + pts count: 1 = new pts: 30937. update pts: 30919 < new pts 30937, channel id: -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1195700 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1176673 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30938 + pts count: 1 = new pts: 30939, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30939 + pts count: 1 = new pts: 30940. update pts: 28115 < new pts 30940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30939 + pts count: 1 = new pts: 30940. update pts: 30772 < new pts 30940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30939 + pts count: 1 = new pts: 30940. update pts: 30776 < new pts 30940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30939 + pts count: 1 = new pts: 30940. update pts: 30778 < new pts 30940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30939 + pts count: 1 = new pts: 30940. update pts: 30779 < new pts 30940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30939 + pts count: 1 = new pts: 30940. update pts: 30808 < new pts 30940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30939 + pts count: 1 = new pts: 30940. update pts: 30833 < new pts 30940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30939 + pts count: 1 = new pts: 30940. update pts: 30858 < new pts 30940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30939 + pts count: 1 = new pts: 30940. update pts: 30859 < new pts 30940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30939 + pts count: 1 = new pts: 30940. update pts: 30892 < new pts 30940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30939 + pts count: 1 = new pts: 30940. update pts: 30908 < new pts 30940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30939 + pts count: 1 = new pts: 30940. update pts: 30909 < new pts 30940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30939 + pts count: 1 = new pts: 30940. update pts: 30914 < new pts 30940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30939 + pts count: 1 = new pts: 30940. update pts: 30922 < new pts 30940, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30939 + pts count: 1 = new pts: 30940. update pts: 30935 < new pts 30940, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30938 + pts count: 1 = new pts: 30939. update pts: 28115 < new pts 30939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30938 + pts count: 1 = new pts: 30939. update pts: 30822 < new pts 30939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30938 + pts count: 1 = new pts: 30939. update pts: 30885 < new pts 30939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30938 + pts count: 1 = new pts: 30939. update pts: 30898 < new pts 30939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30938 + pts count: 1 = new pts: 30939. update pts: 30904 < new pts 30939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30938 + pts count: 1 = new pts: 30939. update pts: 30911 < new pts 30939, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30938 + pts count: 1 = new pts: 30939. update pts: 30919 < new pts 30939, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1200204 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1177201 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 28115 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30772 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30776 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30778 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30779 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30808 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30833 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30858 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30859 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30892 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30908 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30909 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30914 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30922 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30935 < new pts 30941, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 28115 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30822 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30885 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30898 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30904 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30911 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30919 < new pts 30941, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1196740 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1181394 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 28115 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30772 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30776 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30778 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30779 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30808 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30833 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30858 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30859 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30892 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30908 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30909 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30914 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30922 < new pts 30941, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30940 + pts count: 1 = new pts: 30941. update pts: 30935 < new pts 30941, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30941 + pts count: 1 = new pts: 30942. update pts: 28115 < new pts 30942, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30941 + pts count: 1 = new pts: 30942. update pts: 30822 < new pts 30942, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30941 + pts count: 1 = new pts: 30942. update pts: 30885 < new pts 30942, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30941 + pts count: 1 = new pts: 30942. update pts: 30898 < new pts 30942, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30941 + pts count: 1 = new pts: 30942. update pts: 30904 < new pts 30942, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30941 + pts count: 1 = new pts: 30942. update pts: 30911 < new pts 30942, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30941 + pts count: 1 = new pts: 30942. update pts: 30919 < new pts 30942, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1204420 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30943, pts count: 1, new pts: 30944 < update pts: 30945, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1186808 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 28115 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30772 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30776 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30778 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30779 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30808 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30833 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30858 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30859 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30892 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30908 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30909 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30914 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30922 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30935 < new pts 30946, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 28115 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30822 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30885 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30898 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30904 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30911 < new pts 30946, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30945 + pts count: 1 = new pts: 30946. update pts: 30919 < new pts 30946, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -Wrote 1211940 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1188883 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30946 + pts count: 1 = new pts: 30947. update pts: 28115 < new pts 30947, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30946 + pts count: 1 = new pts: 30947. update pts: 30772 < new pts 30947, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30946 + pts count: 1 = new pts: 30947. update pts: 30776 < new pts 30947, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30946 + pts count: 1 = new pts: 30947. update pts: 30778 < new pts 30947, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30946 + pts count: 1 = new pts: 30947. update pts: 30779 < new pts 30947, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30946 + pts count: 1 = new pts: 30947. update pts: 30808 < new pts 30947, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30946 + pts count: 1 = new pts: 30947. update pts: 30833 < new pts 30947, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30946 + pts count: 1 = new pts: 30947. update pts: 30858 < new pts 30947, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30946 + pts count: 1 = new pts: 30947. update pts: 30859 < new pts 30947, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30946 + pts count: 1 = new pts: 30947. update pts: 30892 < new pts 30947, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30946 + pts count: 1 = new pts: 30947. update pts: 30908 < new pts 30947, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30946 + pts count: 1 = new pts: 30947. update pts: 30909 < new pts 30947, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30946 + pts count: 1 = new pts: 30947. update pts: 30914 < new pts 30947, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30946 + pts count: 1 = new pts: 30947. update pts: 30922 < new pts 30947, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30946 + pts count: 1 = new pts: 30947. update pts: 30935 < new pts 30947, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 28115 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30822 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30885 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30898 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30904 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30911 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30919 < new pts 30948, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1213326 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1195176 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 28115 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30772 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30776 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30778 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30779 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30808 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30833 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30858 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30859 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30892 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30908 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30909 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30914 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30922 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30947 + pts count: 1 = new pts: 30948. update pts: 30935 < new pts 30948, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30947 + pts count: 1 = new pts: 30948, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30949 + pts count: 1 = new pts: 30950. update pts: 28115 < new pts 30950, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30949 + pts count: 1 = new pts: 30950. update pts: 30822 < new pts 30950, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30949 + pts count: 1 = new pts: 30950. update pts: 30885 < new pts 30950, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30949 + pts count: 1 = new pts: 30950. update pts: 30898 < new pts 30950, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30949 + pts count: 1 = new pts: 30950. update pts: 30904 < new pts 30950, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30949 + pts count: 1 = new pts: 30950. update pts: 30911 < new pts 30950, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30949 + pts count: 1 = new pts: 30950. update pts: 30919 < new pts 30950, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1220405 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1194731 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 28115 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30772 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30776 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30778 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30779 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30808 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30833 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30858 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30859 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30892 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30908 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30909 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30914 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30922 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30935 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30948 < new pts 30951, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 28115 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30822 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30885 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30898 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30904 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30911 < new pts 30951, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30950 + pts count: 1 = new pts: 30951. update pts: 30919 < new pts 30951, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1218105 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30950, pts count: 1, new pts: 30951 < update pts: 30952, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -Wrote 1194158 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30953 + pts count: 1 = new pts: 30954. update pts: 28115 < new pts 30954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30953 + pts count: 1 = new pts: 30954. update pts: 30772 < new pts 30954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30953 + pts count: 1 = new pts: 30954. update pts: 30776 < new pts 30954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30953 + pts count: 1 = new pts: 30954. update pts: 30778 < new pts 30954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30953 + pts count: 1 = new pts: 30954. update pts: 30779 < new pts 30954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30953 + pts count: 1 = new pts: 30954. update pts: 30808 < new pts 30954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30953 + pts count: 1 = new pts: 30954. update pts: 30833 < new pts 30954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30953 + pts count: 1 = new pts: 30954. update pts: 30858 < new pts 30954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30953 + pts count: 1 = new pts: 30954. update pts: 30859 < new pts 30954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30953 + pts count: 1 = new pts: 30954. update pts: 30892 < new pts 30954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30953 + pts count: 1 = new pts: 30954. update pts: 30908 < new pts 30954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30953 + pts count: 1 = new pts: 30954. update pts: 30909 < new pts 30954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30953 + pts count: 1 = new pts: 30954. update pts: 30914 < new pts 30954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30953 + pts count: 1 = new pts: 30954. update pts: 30922 < new pts 30954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30953 + pts count: 1 = new pts: 30954. update pts: 30935 < new pts 30954, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30953 + pts count: 1 = new pts: 30954. update pts: 30948 < new pts 30954, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30951 + pts count: 1 = new pts: 30952. update pts: 28115 < new pts 30952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30951 + pts count: 1 = new pts: 30952. update pts: 30822 < new pts 30952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30951 + pts count: 1 = new pts: 30952. update pts: 30885 < new pts 30952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30951 + pts count: 1 = new pts: 30952. update pts: 30898 < new pts 30952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30951 + pts count: 1 = new pts: 30952. update pts: 30904 < new pts 30952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30951 + pts count: 1 = new pts: 30952. update pts: 30911 < new pts 30952, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30951 + pts count: 1 = new pts: 30952. update pts: 30919 < new pts 30952, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1222101 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1198804 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 28115 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30772 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30776 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30778 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30779 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30808 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30833 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30858 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30859 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30892 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30908 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30909 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30914 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30922 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30935 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30948 < new pts 30955, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 28115 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30822 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30885 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30898 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30904 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30911 < new pts 30955, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30954 + pts count: 1 = new pts: 30955. update pts: 30919 < new pts 30955, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1202671 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -Wrote 1228320 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30956, pts count: 1, new pts: 30957 < update pts: 30958, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30956 + pts count: 1 = new pts: 30957. update pts: 28115 < new pts 30957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30956 + pts count: 1 = new pts: 30957. update pts: 30822 < new pts 30957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30956 + pts count: 1 = new pts: 30957. update pts: 30885 < new pts 30957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30956 + pts count: 1 = new pts: 30957. update pts: 30898 < new pts 30957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30956 + pts count: 1 = new pts: 30957. update pts: 30904 < new pts 30957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30956 + pts count: 1 = new pts: 30957. update pts: 30911 < new pts 30957, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30956 + pts count: 1 = new pts: 30957. update pts: 30919 < new pts 30957, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 28115 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30772 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30776 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30778 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30779 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30808 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30833 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30858 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30859 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30892 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30908 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30909 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30914 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30922 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30935 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30948 < new pts 30959, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1205307 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1229338 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 28115 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30822 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30885 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30898 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30904 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30911 < new pts 30959, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30958 + pts count: 1 = new pts: 30959. update pts: 30919 < new pts 30959, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30958, pts count: 1, new pts: 30959 < update pts: 30960, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 28115 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30772 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30776 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30778 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30779 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30808 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30833 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30858 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30859 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30892 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30908 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30909 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30914 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30922 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30935 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30948 < new pts 30961, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1208394 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30960, pts count: 1, new pts: 30961 < update pts: 30962, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -Wrote 1229992 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 28115 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30822 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30885 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30898 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30904 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30911 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30919 < new pts 30963, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 28115 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30772 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30776 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30778 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30779 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30808 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30833 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30858 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30859 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30892 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30908 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30909 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30914 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30922 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30935 < new pts 30961, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30960 + pts count: 1 = new pts: 30961. update pts: 30948 < new pts 30961, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1208137 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 28115 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30822 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30885 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30898 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30904 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30911 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30919 < new pts 30963, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1230828 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 28115 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30772 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30776 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30778 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30779 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30808 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30833 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30858 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30859 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30892 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30908 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30909 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30914 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30922 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30935 < new pts 30963, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30962 + pts count: 1 = new pts: 30963. update pts: 30948 < new pts 30963, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1211390 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 28115 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30822 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30885 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30898 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30904 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30911 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30919 < new pts 30965, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1234373 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 28115 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30772 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30776 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30778 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30779 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30808 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30833 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30858 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30859 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30892 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30908 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30909 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30914 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30922 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30935 < new pts 30965, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30964 + pts count: 1 = new pts: 30965. update pts: 30948 < new pts 30965, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1211634 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 28115 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30822 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30885 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30898 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30904 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30911 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30919 < new pts 30966, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -Wrote 1238425 bytes -AuthKeyHandler, danogentili: Calling 714489... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -Wrote 1207246 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 28115 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30772 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30776 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30778 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30779 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30808 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30833 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewChannelMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 186 + pts count: 1 = new pts: 187. update pts: 185 < new pts 187, channel id: 10084044 -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30858 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30859 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30892 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30908 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30909 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30914 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30922 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30935 < new pts 30966, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30965 + pts count: 1 = new pts: 30966. update pts: 30948 < new pts 30966, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 30965, pts count: 1, new pts: 30966 < update pts: 30968, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30968 + pts count: 1 = new pts: 30969. update pts: 28115 < new pts 30969, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30968 + pts count: 1 = new pts: 30969. update pts: 30822 < new pts 30969, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30968 + pts count: 1 = new pts: 30969. update pts: 30885 < new pts 30969, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30968 + pts count: 1 = new pts: 30969. update pts: 30898 < new pts 30969, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30968 + pts count: 1 = new pts: 30969. update pts: 30904 < new pts 30969, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30968 + pts count: 1 = new pts: 30969. update pts: 30911 < new pts 30969, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30968 + pts count: 1 = new pts: 30969. update pts: 30919 < new pts 30969, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1239566 bytes -Wrote 1206326 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30969 + pts count: 1 = new pts: 30970. update pts: 28115 < new pts 30970, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30969 + pts count: 1 = new pts: 30970. update pts: 30822 < new pts 30970, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30969 + pts count: 1 = new pts: 30970. update pts: 30885 < new pts 30970, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30969 + pts count: 1 = new pts: 30970. update pts: 30898 < new pts 30970, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30969 + pts count: 1 = new pts: 30970. update pts: 30904 < new pts 30970, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30969 + pts count: 1 = new pts: 30970. update pts: 30911 < new pts 30970, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30969 + pts count: 1 = new pts: 30970. update pts: 30919 < new pts 30970, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1210882 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30971 + pts count: 1 = new pts: 30972. update pts: 28115 < new pts 30972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30971 + pts count: 1 = new pts: 30972. update pts: 30822 < new pts 30972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30971 + pts count: 1 = new pts: 30972. update pts: 30885 < new pts 30972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30971 + pts count: 1 = new pts: 30972. update pts: 30898 < new pts 30972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30971 + pts count: 1 = new pts: 30972. update pts: 30904 < new pts 30972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30971 + pts count: 1 = new pts: 30972. update pts: 30911 < new pts 30972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30971 + pts count: 1 = new pts: 30972. update pts: 30919 < new pts 30972, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1209188 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30972 + pts count: 1 = new pts: 30973. update pts: 28115 < new pts 30973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30972 + pts count: 1 = new pts: 30973. update pts: 30822 < new pts 30973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30972 + pts count: 1 = new pts: 30973. update pts: 30885 < new pts 30973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30972 + pts count: 1 = new pts: 30973. update pts: 30898 < new pts 30973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30972 + pts count: 1 = new pts: 30973. update pts: 30904 < new pts 30973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30972 + pts count: 1 = new pts: 30973. update pts: 30911 < new pts 30973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30972 + pts count: 1 = new pts: 30973. update pts: 30919 < new pts 30973, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1211498 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30973 + pts count: 1 = new pts: 30974. update pts: 28115 < new pts 30974, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30973 + pts count: 1 = new pts: 30974. update pts: 30822 < new pts 30974, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30973 + pts count: 1 = new pts: 30974. update pts: 30885 < new pts 30974, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30973 + pts count: 1 = new pts: 30974. update pts: 30898 < new pts 30974, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30973 + pts count: 1 = new pts: 30974. update pts: 30904 < new pts 30974, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30973 + pts count: 1 = new pts: 30974. update pts: 30911 < new pts 30974, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30973 + pts count: 1 = new pts: 30974. update pts: 30919 < new pts 30974, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1210425 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30974 + pts count: 1 = new pts: 30975. update pts: 28115 < new pts 30975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30974 + pts count: 1 = new pts: 30975. update pts: 30822 < new pts 30975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30974 + pts count: 1 = new pts: 30975. update pts: 30885 < new pts 30975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30974 + pts count: 1 = new pts: 30975. update pts: 30898 < new pts 30975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30974 + pts count: 1 = new pts: 30975. update pts: 30904 < new pts 30975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30974 + pts count: 1 = new pts: 30975. update pts: 30911 < new pts 30975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30974 + pts count: 1 = new pts: 30975. update pts: 30919 < new pts 30975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1209222 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30974 + pts count: 1 = new pts: 30975. update pts: 28115 < new pts 30975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30974 + pts count: 1 = new pts: 30975. update pts: 30822 < new pts 30975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30974 + pts count: 1 = new pts: 30975. update pts: 30885 < new pts 30975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30974 + pts count: 1 = new pts: 30975. update pts: 30898 < new pts 30975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30974 + pts count: 1 = new pts: 30975. update pts: 30904 < new pts 30975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30974 + pts count: 1 = new pts: 30975. update pts: 30911 < new pts 30975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30974 + pts count: 1 = new pts: 30975. update pts: 30919 < new pts 30975, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30974 + pts count: 1 = new pts: 30975, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1213153 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30976 + pts count: 1 = new pts: 30977. update pts: 28115 < new pts 30977, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30976 + pts count: 1 = new pts: 30977. update pts: 30822 < new pts 30977, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30976 + pts count: 1 = new pts: 30977. update pts: 30885 < new pts 30977, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30976 + pts count: 1 = new pts: 30977. update pts: 30898 < new pts 30977, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30976 + pts count: 1 = new pts: 30977. update pts: 30904 < new pts 30977, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30976 + pts count: 1 = new pts: 30977. update pts: 30911 < new pts 30977, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30976 + pts count: 1 = new pts: 30977. update pts: 30919 < new pts 30977, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30976 + pts count: 1 = new pts: 30977. update pts: 30975 < new pts 30977, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1220136 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30977 + pts count: 1 = new pts: 30978. update pts: 28115 < new pts 30978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30977 + pts count: 1 = new pts: 30978. update pts: 30822 < new pts 30978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30977 + pts count: 1 = new pts: 30978. update pts: 30885 < new pts 30978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30977 + pts count: 1 = new pts: 30978. update pts: 30898 < new pts 30978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30977 + pts count: 1 = new pts: 30978. update pts: 30904 < new pts 30978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30977 + pts count: 1 = new pts: 30978. update pts: 30911 < new pts 30978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30977 + pts count: 1 = new pts: 30978. update pts: 30919 < new pts 30978, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30977 + pts count: 1 = new pts: 30978. update pts: 30975 < new pts 30978, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1219345 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30978 + pts count: 1 = new pts: 30979. update pts: 28115 < new pts 30979, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30978 + pts count: 1 = new pts: 30979. update pts: 30822 < new pts 30979, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30978 + pts count: 1 = new pts: 30979. update pts: 30885 < new pts 30979, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30978 + pts count: 1 = new pts: 30979. update pts: 30898 < new pts 30979, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30978 + pts count: 1 = new pts: 30979. update pts: 30904 < new pts 30979, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30978 + pts count: 1 = new pts: 30979. update pts: 30911 < new pts 30979, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30978 + pts count: 1 = new pts: 30979. update pts: 30919 < new pts 30979, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30978 + pts count: 1 = new pts: 30979. update pts: 30975 < new pts 30979, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1223499 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30979 + pts count: 1 = new pts: 30980. update pts: 28115 < new pts 30980, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30979 + pts count: 1 = new pts: 30980. update pts: 30822 < new pts 30980, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30979 + pts count: 1 = new pts: 30980. update pts: 30885 < new pts 30980, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30979 + pts count: 1 = new pts: 30980. update pts: 30898 < new pts 30980, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30979 + pts count: 1 = new pts: 30980. update pts: 30904 < new pts 30980, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30979 + pts count: 1 = new pts: 30980. update pts: 30911 < new pts 30980, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30979 + pts count: 1 = new pts: 30980. update pts: 30919 < new pts 30980, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30979 + pts count: 1 = new pts: 30980. update pts: 30975 < new pts 30980, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1227658 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30980 + pts count: 1 = new pts: 30981. update pts: 28115 < new pts 30981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30980 + pts count: 1 = new pts: 30981. update pts: 30822 < new pts 30981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30980 + pts count: 1 = new pts: 30981. update pts: 30885 < new pts 30981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30980 + pts count: 1 = new pts: 30981. update pts: 30898 < new pts 30981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30980 + pts count: 1 = new pts: 30981. update pts: 30904 < new pts 30981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30980 + pts count: 1 = new pts: 30981. update pts: 30911 < new pts 30981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30980 + pts count: 1 = new pts: 30981. update pts: 30919 < new pts 30981, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30980 + pts count: 1 = new pts: 30981. update pts: 30975 < new pts 30981, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1228810 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30981 + pts count: 1 = new pts: 30982. update pts: 28115 < new pts 30982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30981 + pts count: 1 = new pts: 30982. update pts: 30822 < new pts 30982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30981 + pts count: 1 = new pts: 30982. update pts: 30885 < new pts 30982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30981 + pts count: 1 = new pts: 30982. update pts: 30898 < new pts 30982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30981 + pts count: 1 = new pts: 30982. update pts: 30904 < new pts 30982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30981 + pts count: 1 = new pts: 30982. update pts: 30911 < new pts 30982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30981 + pts count: 1 = new pts: 30982. update pts: 30919 < new pts 30982, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30981 + pts count: 1 = new pts: 30982. update pts: 30975 < new pts 30982, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1230869 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30982 + pts count: 1 = new pts: 30983. update pts: 28115 < new pts 30983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30982 + pts count: 1 = new pts: 30983. update pts: 30822 < new pts 30983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30982 + pts count: 1 = new pts: 30983. update pts: 30885 < new pts 30983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30982 + pts count: 1 = new pts: 30983. update pts: 30898 < new pts 30983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30982 + pts count: 1 = new pts: 30983. update pts: 30904 < new pts 30983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30982 + pts count: 1 = new pts: 30983. update pts: 30911 < new pts 30983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30982 + pts count: 1 = new pts: 30983. update pts: 30919 < new pts 30983, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30982 + pts count: 1 = new pts: 30983. update pts: 30975 < new pts 30983, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1232033 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30983 + pts count: 1 = new pts: 30984. update pts: 28115 < new pts 30984, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30983 + pts count: 1 = new pts: 30984. update pts: 30822 < new pts 30984, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30983 + pts count: 1 = new pts: 30984. update pts: 30885 < new pts 30984, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30983 + pts count: 1 = new pts: 30984. update pts: 30898 < new pts 30984, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30983 + pts count: 1 = new pts: 30984. update pts: 30904 < new pts 30984, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30983 + pts count: 1 = new pts: 30984. update pts: 30911 < new pts 30984, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30983 + pts count: 1 = new pts: 30984. update pts: 30919 < new pts 30984, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30983 + pts count: 1 = new pts: 30984. update pts: 30975 < new pts 30984, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1231493 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30984 + pts count: 1 = new pts: 30985. update pts: 28115 < new pts 30985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30984 + pts count: 1 = new pts: 30985. update pts: 30822 < new pts 30985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30984 + pts count: 1 = new pts: 30985. update pts: 30885 < new pts 30985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30984 + pts count: 1 = new pts: 30985. update pts: 30898 < new pts 30985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30984 + pts count: 1 = new pts: 30985. update pts: 30904 < new pts 30985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30984 + pts count: 1 = new pts: 30985. update pts: 30911 < new pts 30985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30984 + pts count: 1 = new pts: 30985. update pts: 30919 < new pts 30985, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30984 + pts count: 1 = new pts: 30985. update pts: 30975 < new pts 30985, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1234327 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30985 + pts count: 1 = new pts: 30986. update pts: 28115 < new pts 30986, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30985 + pts count: 1 = new pts: 30986. update pts: 30822 < new pts 30986, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30985 + pts count: 1 = new pts: 30986. update pts: 30885 < new pts 30986, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30985 + pts count: 1 = new pts: 30986. update pts: 30898 < new pts 30986, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30985 + pts count: 1 = new pts: 30986. update pts: 30904 < new pts 30986, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30985 + pts count: 1 = new pts: 30986. update pts: 30911 < new pts 30986, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30985 + pts count: 1 = new pts: 30986. update pts: 30919 < new pts 30986, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30985 + pts count: 1 = new pts: 30986. update pts: 30975 < new pts 30986, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1232555 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30986 + pts count: 1 = new pts: 30987. update pts: 28115 < new pts 30987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30986 + pts count: 1 = new pts: 30987. update pts: 30822 < new pts 30987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30986 + pts count: 1 = new pts: 30987. update pts: 30885 < new pts 30987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30986 + pts count: 1 = new pts: 30987. update pts: 30898 < new pts 30987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30986 + pts count: 1 = new pts: 30987. update pts: 30904 < new pts 30987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30986 + pts count: 1 = new pts: 30987. update pts: 30911 < new pts 30987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30986 + pts count: 1 = new pts: 30987. update pts: 30919 < new pts 30987, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30986 + pts count: 1 = new pts: 30987. update pts: 30975 < new pts 30987, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1232131 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 30987 + pts count: 1 = new pts: 30988, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30988 + pts count: 1 = new pts: 30989. update pts: 28115 < new pts 30989, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30988 + pts count: 1 = new pts: 30989. update pts: 30822 < new pts 30989, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30988 + pts count: 1 = new pts: 30989. update pts: 30885 < new pts 30989, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30988 + pts count: 1 = new pts: 30989. update pts: 30898 < new pts 30989, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30988 + pts count: 1 = new pts: 30989. update pts: 30904 < new pts 30989, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30988 + pts count: 1 = new pts: 30989. update pts: 30911 < new pts 30989, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30988 + pts count: 1 = new pts: 30989. update pts: 30919 < new pts 30989, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30988 + pts count: 1 = new pts: 30989. update pts: 30975 < new pts 30989, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1227482 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30988 + pts count: 1 = new pts: 30989. update pts: 28115 < new pts 30989, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30988 + pts count: 1 = new pts: 30989. update pts: 30822 < new pts 30989, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30988 + pts count: 1 = new pts: 30989. update pts: 30885 < new pts 30989, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30988 + pts count: 1 = new pts: 30989. update pts: 30898 < new pts 30989, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30988 + pts count: 1 = new pts: 30989. update pts: 30904 < new pts 30989, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateChatUserTyping... -UpdateHandler, danogentili: Saving an update of type updateChatUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30988 + pts count: 1 = new pts: 30989. update pts: 30911 < new pts 30989, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30988 + pts count: 1 = new pts: 30989. update pts: 30919 < new pts 30989, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30988 + pts count: 1 = new pts: 30989. update pts: 30975 < new pts 30989, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1222762 bytes -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30998 + pts count: 1 = new pts: 30999. update pts: 28115 < new pts 30999, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 653116 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 30999 + pts count: 1 = new pts: 31000. update pts: 28115 < new pts 31000, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 665533 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31000 + pts count: 1 = new pts: 31001. update pts: 28115 < new pts 31001, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 674611 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31001 + pts count: 1 = new pts: 31002. update pts: 28115 < new pts 31002, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 690099 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31002 + pts count: 1 = new pts: 31003. update pts: 28115 < new pts 31003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 696239 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31002 + pts count: 1 = new pts: 31003. update pts: 28115 < new pts 31003, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 709215 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31004 + pts count: 1 = new pts: 31005. update pts: 28115 < new pts 31005, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31004 + pts count: 1 = new pts: 31005. update pts: 31004 < new pts 31005, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 724085 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31005 + pts count: 1 = new pts: 31006. update pts: 28115 < new pts 31006, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31005 + pts count: 1 = new pts: 31006. update pts: 31004 < new pts 31006, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 735954 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31006 + pts count: 1 = new pts: 31007. update pts: 28115 < new pts 31007, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31006 + pts count: 1 = new pts: 31007. update pts: 31004 < new pts 31007, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 750751 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31007 + pts count: 1 = new pts: 31008. update pts: 28115 < new pts 31008, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31007 + pts count: 1 = new pts: 31008. update pts: 31004 < new pts 31008, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 759979 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31008 + pts count: 1 = new pts: 31009. update pts: 28115 < new pts 31009, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31008 + pts count: 1 = new pts: 31009. update pts: 31004 < new pts 31009, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 769210 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31009 + pts count: 1 = new pts: 31010. update pts: 28115 < new pts 31010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31009 + pts count: 1 = new pts: 31010. update pts: 31004 < new pts 31010, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 775354 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31009 + pts count: 1 = new pts: 31010. update pts: 28115 < new pts 31010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31009 + pts count: 1 = new pts: 31010. update pts: 31004 < new pts 31010, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 781505 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31009 + pts count: 1 = new pts: 31010. update pts: 28115 < new pts 31010, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31009 + pts count: 1 = new pts: 31010. update pts: 31004 < new pts 31010, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 797580 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31012 + pts count: 1 = new pts: 31013. update pts: 28115 < new pts 31013, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31012 + pts count: 1 = new pts: 31013. update pts: 31004 < new pts 31013, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 806816 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31013 + pts count: 1 = new pts: 31014. update pts: 28115 < new pts 31014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31013 + pts count: 1 = new pts: 31014. update pts: 31004 < new pts 31014, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 812968 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31013 + pts count: 1 = new pts: 31014. update pts: 28115 < new pts 31014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31013 + pts count: 1 = new pts: 31014. update pts: 31004 < new pts 31014, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31013 + pts count: 1 = new pts: 31014, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 830377 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31015 + pts count: 1 = new pts: 31016. update pts: 28115 < new pts 31016, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31015 + pts count: 1 = new pts: 31016. update pts: 31004 < new pts 31016, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31015 + pts count: 1 = new pts: 31016. update pts: 31014 < new pts 31016, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 841082 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31017 + pts count: 1 = new pts: 31018. update pts: 28115 < new pts 31018, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31017 + pts count: 1 = new pts: 31018. update pts: 31004 < new pts 31018, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31017 + pts count: 1 = new pts: 31018. update pts: 31014 < new pts 31018, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 852966 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31018 + pts count: 1 = new pts: 31019. update pts: 28115 < new pts 31019, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31018 + pts count: 1 = new pts: 31019. update pts: 31004 < new pts 31019, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31018 + pts count: 1 = new pts: 31019. update pts: 31014 < new pts 31019, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 859122 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31018 + pts count: 1 = new pts: 31019. update pts: 28115 < new pts 31019, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31018 + pts count: 1 = new pts: 31019. update pts: 31004 < new pts 31019, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31018 + pts count: 1 = new pts: 31019. update pts: 31014 < new pts 31019, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 871004 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31019 + pts count: 1 = new pts: 31020. update pts: 28115 < new pts 31020, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31019 + pts count: 1 = new pts: 31020. update pts: 31004 < new pts 31020, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31019 + pts count: 1 = new pts: 31020. update pts: 31014 < new pts 31020, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 883323 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31021 + pts count: 1 = new pts: 31022. update pts: 28115 < new pts 31022, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31021 + pts count: 1 = new pts: 31022. update pts: 31004 < new pts 31022, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31021 + pts count: 1 = new pts: 31022. update pts: 31014 < new pts 31022, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 889244 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31021 + pts count: 1 = new pts: 31022. update pts: 28115 < new pts 31022, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31021 + pts count: 1 = new pts: 31022. update pts: 31004 < new pts 31022, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31021 + pts count: 1 = new pts: 31022. update pts: 31014 < new pts 31022, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 896833 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31022 + pts count: 1 = new pts: 31023. update pts: 28115 < new pts 31023, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31022 + pts count: 1 = new pts: 31023. update pts: 31004 < new pts 31023, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31022 + pts count: 1 = new pts: 31023. update pts: 31014 < new pts 31023, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31022 + pts count: 1 = new pts: 31023, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 906325 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31023 + pts count: 1 = new pts: 31024. update pts: 28115 < new pts 31024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31023 + pts count: 1 = new pts: 31024. update pts: 31004 < new pts 31024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31023 + pts count: 1 = new pts: 31024. update pts: 31014 < new pts 31024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31023 + pts count: 1 = new pts: 31024. update pts: 31023 < new pts 31024, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 910413 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31023 + pts count: 1 = new pts: 31024. update pts: 28115 < new pts 31024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31023 + pts count: 1 = new pts: 31024. update pts: 31004 < new pts 31024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31023 + pts count: 1 = new pts: 31024. update pts: 31014 < new pts 31024, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31023 + pts count: 1 = new pts: 31024. update pts: 31023 < new pts 31024, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 924245 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31026 + pts count: 1 = new pts: 31027. update pts: 28115 < new pts 31027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31026 + pts count: 1 = new pts: 31027. update pts: 31004 < new pts 31027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31026 + pts count: 1 = new pts: 31027. update pts: 31014 < new pts 31027, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31026 + pts count: 1 = new pts: 31027. update pts: 31023 < new pts 31027, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 933885 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31027 + pts count: 1 = new pts: 31028. update pts: 28115 < new pts 31028, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31027 + pts count: 1 = new pts: 31028. update pts: 31004 < new pts 31028, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31027 + pts count: 1 = new pts: 31028. update pts: 31014 < new pts 31028, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31027 + pts count: 1 = new pts: 31028. update pts: 31023 < new pts 31028, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 937974 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31027 + pts count: 1 = new pts: 31028. update pts: 28115 < new pts 31028, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31027 + pts count: 1 = new pts: 31028. update pts: 31004 < new pts 31028, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31027 + pts count: 1 = new pts: 31028. update pts: 31014 < new pts 31028, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31027 + pts count: 1 = new pts: 31028. update pts: 31023 < new pts 31028, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 948284 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31029 + pts count: 1 = new pts: 31030. update pts: 28115 < new pts 31030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31029 + pts count: 1 = new pts: 31030. update pts: 31004 < new pts 31030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31029 + pts count: 1 = new pts: 31030. update pts: 31014 < new pts 31030, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31029 + pts count: 1 = new pts: 31030. update pts: 31023 < new pts 31030, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 957923 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31030 + pts count: 1 = new pts: 31031. update pts: 28115 < new pts 31031, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31030 + pts count: 1 = new pts: 31031. update pts: 31004 < new pts 31031, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31030 + pts count: 1 = new pts: 31031. update pts: 31014 < new pts 31031, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31030 + pts count: 1 = new pts: 31031. update pts: 31023 < new pts 31031, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 967560 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31031 + pts count: 1 = new pts: 31032. update pts: 28115 < new pts 31032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31031 + pts count: 1 = new pts: 31032. update pts: 31004 < new pts 31032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31031 + pts count: 1 = new pts: 31032. update pts: 31014 < new pts 31032, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31031 + pts count: 1 = new pts: 31032. update pts: 31023 < new pts 31032, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 975230 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31032 + pts count: 1 = new pts: 31033. update pts: 28115 < new pts 31033, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31032 + pts count: 1 = new pts: 31033. update pts: 31004 < new pts 31033, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31032 + pts count: 1 = new pts: 31033. update pts: 31014 < new pts 31033, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31032 + pts count: 1 = new pts: 31033. update pts: 31023 < new pts 31033, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 982400 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31033 + pts count: 1 = new pts: 31034. update pts: 28115 < new pts 31034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31033 + pts count: 1 = new pts: 31034. update pts: 31004 < new pts 31034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31033 + pts count: 1 = new pts: 31034. update pts: 31014 < new pts 31034, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31033 + pts count: 1 = new pts: 31034. update pts: 31023 < new pts 31034, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 989572 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31034 + pts count: 1 = new pts: 31035. update pts: 28115 < new pts 31035, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31034 + pts count: 1 = new pts: 31035. update pts: 31004 < new pts 31035, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31034 + pts count: 1 = new pts: 31035. update pts: 31014 < new pts 31035, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31034 + pts count: 1 = new pts: 31035. update pts: 31023 < new pts 31035, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 998709 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31035 + pts count: 1 = new pts: 31036. update pts: 28115 < new pts 31036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31035 + pts count: 1 = new pts: 31036. update pts: 31004 < new pts 31036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31035 + pts count: 1 = new pts: 31036. update pts: 31014 < new pts 31036, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31035 + pts count: 1 = new pts: 31036. update pts: 31023 < new pts 31036, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1005870 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31036 + pts count: 1 = new pts: 31037. update pts: 28115 < new pts 31037, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31036 + pts count: 1 = new pts: 31037. update pts: 31004 < new pts 31037, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31036 + pts count: 1 = new pts: 31037. update pts: 31014 < new pts 31037, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31036 + pts count: 1 = new pts: 31037. update pts: 31023 < new pts 31037, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1018432 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31037 + pts count: 1 = new pts: 31038. update pts: 28115 < new pts 31038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31037 + pts count: 1 = new pts: 31038. update pts: 31004 < new pts 31038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31037 + pts count: 1 = new pts: 31038. update pts: 31014 < new pts 31038, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31037 + pts count: 1 = new pts: 31038. update pts: 31023 < new pts 31038, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1028062 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31038 + pts count: 1 = new pts: 31039. update pts: 28115 < new pts 31039, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31038 + pts count: 1 = new pts: 31039. update pts: 31004 < new pts 31039, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31038 + pts count: 1 = new pts: 31039. update pts: 31014 < new pts 31039, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31038 + pts count: 1 = new pts: 31039. update pts: 31023 < new pts 31039, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1040619 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31039 + pts count: 1 = new pts: 31040. update pts: 28115 < new pts 31040, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31039 + pts count: 1 = new pts: 31040. update pts: 31004 < new pts 31040, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31039 + pts count: 1 = new pts: 31040. update pts: 31014 < new pts 31040, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31039 + pts count: 1 = new pts: 31040. update pts: 31023 < new pts 31040, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1052212 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31040 + pts count: 1 = new pts: 31041. update pts: 28115 < new pts 31041, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31040 + pts count: 1 = new pts: 31041. update pts: 31004 < new pts 31041, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31040 + pts count: 1 = new pts: 31041. update pts: 31014 < new pts 31041, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31040 + pts count: 1 = new pts: 31041. update pts: 31023 < new pts 31041, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1056459 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31042 + pts count: 1 = new pts: 31043. update pts: 28115 < new pts 31043, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31042 + pts count: 1 = new pts: 31043. update pts: 31004 < new pts 31043, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31042 + pts count: 1 = new pts: 31043. update pts: 31014 < new pts 31043, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31042 + pts count: 1 = new pts: 31043. update pts: 31023 < new pts 31043, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1061417 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31043 + pts count: 1 = new pts: 31044. update pts: 28115 < new pts 31044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31043 + pts count: 1 = new pts: 31044. update pts: 31004 < new pts 31044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31043 + pts count: 1 = new pts: 31044. update pts: 31014 < new pts 31044, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31043 + pts count: 1 = new pts: 31044. update pts: 31023 < new pts 31044, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1063022 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31044 + pts count: 1 = new pts: 31045. update pts: 28115 < new pts 31045, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31044 + pts count: 1 = new pts: 31045. update pts: 31004 < new pts 31045, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31044 + pts count: 1 = new pts: 31045. update pts: 31014 < new pts 31045, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31044 + pts count: 1 = new pts: 31045. update pts: 31023 < new pts 31045, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1066848 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31045 + pts count: 1 = new pts: 31046. update pts: 28115 < new pts 31046, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31045 + pts count: 1 = new pts: 31046. update pts: 31004 < new pts 31046, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31045 + pts count: 1 = new pts: 31046. update pts: 31014 < new pts 31046, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31045 + pts count: 1 = new pts: 31046. update pts: 31023 < new pts 31046, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1065955 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31046 + pts count: 1 = new pts: 31047. update pts: 28115 < new pts 31047, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31046 + pts count: 1 = new pts: 31047. update pts: 31004 < new pts 31047, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31046 + pts count: 1 = new pts: 31047. update pts: 31014 < new pts 31047, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31046 + pts count: 1 = new pts: 31047. update pts: 31023 < new pts 31047, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1072386 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31047 + pts count: 1 = new pts: 31048. update pts: 28115 < new pts 31048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31047 + pts count: 1 = new pts: 31048. update pts: 31004 < new pts 31048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31047 + pts count: 1 = new pts: 31048. update pts: 31014 < new pts 31048, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31047 + pts count: 1 = new pts: 31048. update pts: 31023 < new pts 31048, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1074293 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31048 + pts count: 1 = new pts: 31049. update pts: 28115 < new pts 31049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31048 + pts count: 1 = new pts: 31049. update pts: 31004 < new pts 31049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31048 + pts count: 1 = new pts: 31049. update pts: 31014 < new pts 31049, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31048 + pts count: 1 = new pts: 31049. update pts: 31023 < new pts 31049, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1072912 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31049 + pts count: 1 = new pts: 31050. update pts: 28115 < new pts 31050, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31049 + pts count: 1 = new pts: 31050. update pts: 31004 < new pts 31050, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31049 + pts count: 1 = new pts: 31050. update pts: 31014 < new pts 31050, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31049 + pts count: 1 = new pts: 31050. update pts: 31023 < new pts 31050, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1073845 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31049 + pts count: 1 = new pts: 31050. update pts: 28115 < new pts 31050, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31049 + pts count: 1 = new pts: 31050. update pts: 31004 < new pts 31050, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31049 + pts count: 1 = new pts: 31050. update pts: 31014 < new pts 31050, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31049 + pts count: 1 = new pts: 31050. update pts: 31023 < new pts 31050, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1078421 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31051 + pts count: 1 = new pts: 31052. update pts: 28115 < new pts 31052, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31051 + pts count: 1 = new pts: 31052. update pts: 31004 < new pts 31052, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31051 + pts count: 1 = new pts: 31052. update pts: 31014 < new pts 31052, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31051 + pts count: 1 = new pts: 31052. update pts: 31023 < new pts 31052, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31051 + pts count: 1 = new pts: 31052. update pts: 31051 < new pts 31052, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1082633 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31052 + pts count: 1 = new pts: 31053. update pts: 28115 < new pts 31053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31052 + pts count: 1 = new pts: 31053. update pts: 31004 < new pts 31053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31052 + pts count: 1 = new pts: 31053. update pts: 31014 < new pts 31053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31052 + pts count: 1 = new pts: 31053. update pts: 31023 < new pts 31053, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31052 + pts count: 1 = new pts: 31053. update pts: 31051 < new pts 31053, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1084291 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31053 + pts count: 1 = new pts: 31054. update pts: 28115 < new pts 31054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31053 + pts count: 1 = new pts: 31054. update pts: 31004 < new pts 31054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31053 + pts count: 1 = new pts: 31054. update pts: 31014 < new pts 31054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31053 + pts count: 1 = new pts: 31054. update pts: 31023 < new pts 31054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31053 + pts count: 1 = new pts: 31054. update pts: 31051 < new pts 31054, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1086371 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31054 + pts count: 1 = new pts: 31055. update pts: 28115 < new pts 31055, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31054 + pts count: 1 = new pts: 31055. update pts: 31004 < new pts 31055, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31054 + pts count: 1 = new pts: 31055. update pts: 31014 < new pts 31055, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31054 + pts count: 1 = new pts: 31055. update pts: 31023 < new pts 31055, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31054 + pts count: 1 = new pts: 31055. update pts: 31051 < new pts 31055, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1090635 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31055 + pts count: 1 = new pts: 31056. update pts: 28115 < new pts 31056, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31055 + pts count: 1 = new pts: 31056. update pts: 31004 < new pts 31056, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31055 + pts count: 1 = new pts: 31056. update pts: 31014 < new pts 31056, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31055 + pts count: 1 = new pts: 31056. update pts: 31023 < new pts 31056, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31055 + pts count: 1 = new pts: 31056. update pts: 31051 < new pts 31056, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1091912 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31056 + pts count: 1 = new pts: 31057. update pts: 28115 < new pts 31057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31056 + pts count: 1 = new pts: 31057. update pts: 31004 < new pts 31057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31056 + pts count: 1 = new pts: 31057. update pts: 31014 < new pts 31057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31056 + pts count: 1 = new pts: 31057. update pts: 31023 < new pts 31057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31056 + pts count: 1 = new pts: 31057. update pts: 31051 < new pts 31057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1090610 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31056 + pts count: 1 = new pts: 31057. update pts: 28115 < new pts 31057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31056 + pts count: 1 = new pts: 31057. update pts: 31004 < new pts 31057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31056 + pts count: 1 = new pts: 31057. update pts: 31014 < new pts 31057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31056 + pts count: 1 = new pts: 31057. update pts: 31023 < new pts 31057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31056 + pts count: 1 = new pts: 31057. update pts: 31051 < new pts 31057, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31056 + pts count: 1 = new pts: 31057, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31057 + pts count: 1 = new pts: 31058, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1097307 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31058 + pts count: 1 = new pts: 31059. update pts: 28115 < new pts 31059, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31058 + pts count: 1 = new pts: 31059. update pts: 31004 < new pts 31059, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31058 + pts count: 1 = new pts: 31059. update pts: 31014 < new pts 31059, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31058 + pts count: 1 = new pts: 31059. update pts: 31023 < new pts 31059, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31058 + pts count: 1 = new pts: 31059. update pts: 31051 < new pts 31059, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31058 + pts count: 1 = new pts: 31059. update pts: 31057 < new pts 31059, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31058 + pts count: 1 = new pts: 31059. update pts: 31058 < new pts 31059, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31058 + pts count: 1 = new pts: 31059, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1099070 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31059 + pts count: 1 = new pts: 31060. update pts: 28115 < new pts 31060, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31059 + pts count: 1 = new pts: 31060. update pts: 31004 < new pts 31060, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31059 + pts count: 1 = new pts: 31060. update pts: 31014 < new pts 31060, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31059 + pts count: 1 = new pts: 31060. update pts: 31023 < new pts 31060, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31059 + pts count: 1 = new pts: 31060. update pts: 31051 < new pts 31060, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31059 + pts count: 1 = new pts: 31060. update pts: 31057 < new pts 31060, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31059 + pts count: 1 = new pts: 31060. update pts: 31058 < new pts 31060, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31059 + pts count: 1 = new pts: 31060. update pts: 31059 < new pts 31060, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1099866 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31060 + pts count: 1 = new pts: 31061. update pts: 28115 < new pts 31061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31060 + pts count: 1 = new pts: 31061. update pts: 31004 < new pts 31061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31060 + pts count: 1 = new pts: 31061. update pts: 31014 < new pts 31061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31060 + pts count: 1 = new pts: 31061. update pts: 31023 < new pts 31061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31060 + pts count: 1 = new pts: 31061. update pts: 31051 < new pts 31061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31060 + pts count: 1 = new pts: 31061. update pts: 31057 < new pts 31061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31060 + pts count: 1 = new pts: 31061. update pts: 31058 < new pts 31061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31060 + pts count: 1 = new pts: 31061. update pts: 31059 < new pts 31061, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1098508 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31060 + pts count: 1 = new pts: 31061. update pts: 28115 < new pts 31061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31060 + pts count: 1 = new pts: 31061. update pts: 31004 < new pts 31061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31060 + pts count: 1 = new pts: 31061. update pts: 31014 < new pts 31061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31060 + pts count: 1 = new pts: 31061. update pts: 31023 < new pts 31061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31060 + pts count: 1 = new pts: 31061. update pts: 31051 < new pts 31061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31060 + pts count: 1 = new pts: 31061. update pts: 31057 < new pts 31061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31060 + pts count: 1 = new pts: 31061. update pts: 31058 < new pts 31061, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31060 + pts count: 1 = new pts: 31061. update pts: 31059 < new pts 31061, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1101062 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31061 + pts count: 1 = new pts: 31062. update pts: 28115 < new pts 31062, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31061 + pts count: 1 = new pts: 31062. update pts: 31004 < new pts 31062, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31061 + pts count: 1 = new pts: 31062. update pts: 31014 < new pts 31062, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31061 + pts count: 1 = new pts: 31062. update pts: 31023 < new pts 31062, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31061 + pts count: 1 = new pts: 31062. update pts: 31051 < new pts 31062, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31061 + pts count: 1 = new pts: 31062. update pts: 31057 < new pts 31062, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31061 + pts count: 1 = new pts: 31062. update pts: 31058 < new pts 31062, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31061 + pts count: 1 = new pts: 31062. update pts: 31059 < new pts 31062, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1105828 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 28115 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31004 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31014 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31023 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31051 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31057 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31058 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31059 < new pts 31064, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1102172 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 28115 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31004 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31014 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31023 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31051 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31057 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31058 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31059 < new pts 31064, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1103656 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 28115 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31004 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31014 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31023 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31051 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31057 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31058 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31059 < new pts 31064, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1100438 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 28115 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31004 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31014 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31023 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31051 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31057 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31058 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31063 + pts count: 1 = new pts: 31064. update pts: 31059 < new pts 31064, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31063 + pts count: 1 = new pts: 31064, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1116738 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31067 + pts count: 1 = new pts: 31068. update pts: 28115 < new pts 31068, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31067 + pts count: 1 = new pts: 31068. update pts: 31004 < new pts 31068, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31067 + pts count: 1 = new pts: 31068. update pts: 31014 < new pts 31068, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31067 + pts count: 1 = new pts: 31068. update pts: 31023 < new pts 31068, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31067 + pts count: 1 = new pts: 31068. update pts: 31051 < new pts 31068, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31067 + pts count: 1 = new pts: 31068. update pts: 31057 < new pts 31068, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31067 + pts count: 1 = new pts: 31068. update pts: 31058 < new pts 31068, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31067 + pts count: 1 = new pts: 31068. update pts: 31059 < new pts 31068, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31067 + pts count: 1 = new pts: 31068. update pts: 31064 < new pts 31068, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1116039 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31068 + pts count: 1 = new pts: 31069. update pts: 28115 < new pts 31069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31068 + pts count: 1 = new pts: 31069. update pts: 31004 < new pts 31069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31068 + pts count: 1 = new pts: 31069. update pts: 31014 < new pts 31069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31068 + pts count: 1 = new pts: 31069. update pts: 31023 < new pts 31069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31068 + pts count: 1 = new pts: 31069. update pts: 31051 < new pts 31069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31068 + pts count: 1 = new pts: 31069. update pts: 31057 < new pts 31069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31068 + pts count: 1 = new pts: 31069. update pts: 31058 < new pts 31069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31068 + pts count: 1 = new pts: 31069. update pts: 31059 < new pts 31069, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31068 + pts count: 1 = new pts: 31069. update pts: 31064 < new pts 31069, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1120580 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31070 + pts count: 1 = new pts: 31071. update pts: 28115 < new pts 31071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31070 + pts count: 1 = new pts: 31071. update pts: 31004 < new pts 31071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31070 + pts count: 1 = new pts: 31071. update pts: 31014 < new pts 31071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31070 + pts count: 1 = new pts: 31071. update pts: 31023 < new pts 31071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31070 + pts count: 1 = new pts: 31071. update pts: 31051 < new pts 31071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31070 + pts count: 1 = new pts: 31071. update pts: 31057 < new pts 31071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31070 + pts count: 1 = new pts: 31071. update pts: 31058 < new pts 31071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31070 + pts count: 1 = new pts: 31071. update pts: 31059 < new pts 31071, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31070 + pts count: 1 = new pts: 31071. update pts: 31064 < new pts 31071, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1122433 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 28115 < new pts 31072, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 31004 < new pts 31072, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 31014 < new pts 31072, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 31023 < new pts 31072, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 31051 < new pts 31072, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 31057 < new pts 31072, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 31058 < new pts 31072, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 31059 < new pts 31072, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 31064 < new pts 31072, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1121311 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 28115 < new pts 31072, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 31004 < new pts 31072, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 31014 < new pts 31072, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 31023 < new pts 31072, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 31051 < new pts 31072, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 31057 < new pts 31072, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 31058 < new pts 31072, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 31059 < new pts 31072, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31071 + pts count: 1 = new pts: 31072. update pts: 31064 < new pts 31072, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1126248 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 28115 < new pts 31074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 31004 < new pts 31074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 31014 < new pts 31074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 31023 < new pts 31074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 31051 < new pts 31074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 31057 < new pts 31074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 31058 < new pts 31074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 31059 < new pts 31074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 31064 < new pts 31074, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1125128 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 28115 < new pts 31074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 31004 < new pts 31074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 31014 < new pts 31074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 31023 < new pts 31074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 31051 < new pts 31074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 31057 < new pts 31074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 31058 < new pts 31074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 31059 < new pts 31074, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31073 + pts count: 1 = new pts: 31074. update pts: 31064 < new pts 31074, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1130064 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31075 + pts count: 1 = new pts: 31076. update pts: 28115 < new pts 31076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31075 + pts count: 1 = new pts: 31076. update pts: 31004 < new pts 31076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31075 + pts count: 1 = new pts: 31076. update pts: 31014 < new pts 31076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31075 + pts count: 1 = new pts: 31076. update pts: 31023 < new pts 31076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31075 + pts count: 1 = new pts: 31076. update pts: 31051 < new pts 31076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31075 + pts count: 1 = new pts: 31076. update pts: 31057 < new pts 31076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31075 + pts count: 1 = new pts: 31076. update pts: 31058 < new pts 31076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31075 + pts count: 1 = new pts: 31076. update pts: 31059 < new pts 31076, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31075 + pts count: 1 = new pts: 31076. update pts: 31064 < new pts 31076, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1132028 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31076 + pts count: 1 = new pts: 31077. update pts: 28115 < new pts 31077, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31076 + pts count: 1 = new pts: 31077. update pts: 31004 < new pts 31077, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31076 + pts count: 1 = new pts: 31077. update pts: 31014 < new pts 31077, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31076 + pts count: 1 = new pts: 31077. update pts: 31023 < new pts 31077, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31076 + pts count: 1 = new pts: 31077. update pts: 31051 < new pts 31077, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31076 + pts count: 1 = new pts: 31077. update pts: 31057 < new pts 31077, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31076 + pts count: 1 = new pts: 31077. update pts: 31058 < new pts 31077, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31076 + pts count: 1 = new pts: 31077. update pts: 31059 < new pts 31077, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31076 + pts count: 1 = new pts: 31077. update pts: 31064 < new pts 31077, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1131456 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31077 + pts count: 1 = new pts: 31078, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31078 + pts count: 1 = new pts: 31079. update pts: 28115 < new pts 31079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31078 + pts count: 1 = new pts: 31079. update pts: 31004 < new pts 31079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31078 + pts count: 1 = new pts: 31079. update pts: 31014 < new pts 31079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31078 + pts count: 1 = new pts: 31079. update pts: 31023 < new pts 31079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31078 + pts count: 1 = new pts: 31079. update pts: 31051 < new pts 31079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31078 + pts count: 1 = new pts: 31079. update pts: 31057 < new pts 31079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31078 + pts count: 1 = new pts: 31079. update pts: 31058 < new pts 31079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31078 + pts count: 1 = new pts: 31079. update pts: 31059 < new pts 31079, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31078 + pts count: 1 = new pts: 31079. update pts: 31064 < new pts 31079, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1133115 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31078 + pts count: 1 = new pts: 31079, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 28115 < new pts 31080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 31004 < new pts 31080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 31014 < new pts 31080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 31023 < new pts 31080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 31051 < new pts 31080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 31057 < new pts 31080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 31058 < new pts 31080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 31059 < new pts 31080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 31064 < new pts 31080, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1133015 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 28115 < new pts 31080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 31004 < new pts 31080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 31014 < new pts 31080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 31023 < new pts 31080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 31051 < new pts 31080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 31057 < new pts 31080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 31058 < new pts 31080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 31059 < new pts 31080, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31079 + pts count: 1 = new pts: 31080. update pts: 31064 < new pts 31080, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1134518 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31080 + pts count: 1 = new pts: 31081. update pts: 28115 < new pts 31081, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31080 + pts count: 1 = new pts: 31081. update pts: 31004 < new pts 31081, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31080 + pts count: 1 = new pts: 31081. update pts: 31014 < new pts 31081, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31080 + pts count: 1 = new pts: 31081. update pts: 31023 < new pts 31081, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31080 + pts count: 1 = new pts: 31081. update pts: 31051 < new pts 31081, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31080 + pts count: 1 = new pts: 31081. update pts: 31057 < new pts 31081, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31080 + pts count: 1 = new pts: 31081. update pts: 31058 < new pts 31081, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31080 + pts count: 1 = new pts: 31081. update pts: 31059 < new pts 31081, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31080 + pts count: 1 = new pts: 31081. update pts: 31064 < new pts 31081, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1136423 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31081 + pts count: 1 = new pts: 31082. update pts: 28115 < new pts 31082, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31081 + pts count: 1 = new pts: 31082. update pts: 31004 < new pts 31082, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31081 + pts count: 1 = new pts: 31082. update pts: 31014 < new pts 31082, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31081 + pts count: 1 = new pts: 31082. update pts: 31023 < new pts 31082, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31081 + pts count: 1 = new pts: 31082. update pts: 31051 < new pts 31082, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31081 + pts count: 1 = new pts: 31082. update pts: 31057 < new pts 31082, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31081 + pts count: 1 = new pts: 31082. update pts: 31058 < new pts 31082, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31081 + pts count: 1 = new pts: 31082. update pts: 31059 < new pts 31082, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31081 + pts count: 1 = new pts: 31082. update pts: 31064 < new pts 31082, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1138125 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31082 + pts count: 1 = new pts: 31083. update pts: 28115 < new pts 31083, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31082 + pts count: 1 = new pts: 31083. update pts: 31004 < new pts 31083, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31082 + pts count: 1 = new pts: 31083. update pts: 31014 < new pts 31083, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31082 + pts count: 1 = new pts: 31083. update pts: 31023 < new pts 31083, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31082 + pts count: 1 = new pts: 31083. update pts: 31051 < new pts 31083, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31082 + pts count: 1 = new pts: 31083. update pts: 31057 < new pts 31083, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31082 + pts count: 1 = new pts: 31083. update pts: 31058 < new pts 31083, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31082 + pts count: 1 = new pts: 31083. update pts: 31059 < new pts 31083, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31082 + pts count: 1 = new pts: 31083. update pts: 31064 < new pts 31083, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1140030 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31083 + pts count: 1 = new pts: 31084. update pts: 28115 < new pts 31084, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31083 + pts count: 1 = new pts: 31084. update pts: 31004 < new pts 31084, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31083 + pts count: 1 = new pts: 31084. update pts: 31014 < new pts 31084, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31083 + pts count: 1 = new pts: 31084. update pts: 31023 < new pts 31084, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31083 + pts count: 1 = new pts: 31084. update pts: 31051 < new pts 31084, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31083 + pts count: 1 = new pts: 31084. update pts: 31057 < new pts 31084, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31083 + pts count: 1 = new pts: 31084. update pts: 31058 < new pts 31084, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31083 + pts count: 1 = new pts: 31084. update pts: 31059 < new pts 31084, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31083 + pts count: 1 = new pts: 31084. update pts: 31064 < new pts 31084, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1139942 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31084 + pts count: 1 = new pts: 31085. update pts: 28115 < new pts 31085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31084 + pts count: 1 = new pts: 31085. update pts: 31004 < new pts 31085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31084 + pts count: 1 = new pts: 31085. update pts: 31014 < new pts 31085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31084 + pts count: 1 = new pts: 31085. update pts: 31023 < new pts 31085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31084 + pts count: 1 = new pts: 31085. update pts: 31051 < new pts 31085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31084 + pts count: 1 = new pts: 31085. update pts: 31057 < new pts 31085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31084 + pts count: 1 = new pts: 31085. update pts: 31058 < new pts 31085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31084 + pts count: 1 = new pts: 31085. update pts: 31059 < new pts 31085, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31084 + pts count: 1 = new pts: 31085. update pts: 31064 < new pts 31085, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1139615 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31085 + pts count: 1 = new pts: 31086. update pts: 28115 < new pts 31086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31085 + pts count: 1 = new pts: 31086. update pts: 31004 < new pts 31086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31085 + pts count: 1 = new pts: 31086. update pts: 31014 < new pts 31086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31085 + pts count: 1 = new pts: 31086. update pts: 31023 < new pts 31086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31085 + pts count: 1 = new pts: 31086. update pts: 31051 < new pts 31086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31085 + pts count: 1 = new pts: 31086. update pts: 31057 < new pts 31086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31085 + pts count: 1 = new pts: 31086. update pts: 31058 < new pts 31086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31085 + pts count: 1 = new pts: 31086. update pts: 31059 < new pts 31086, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31085 + pts count: 1 = new pts: 31086. update pts: 31064 < new pts 31086, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1141522 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31086 + pts count: 1 = new pts: 31087. update pts: 28115 < new pts 31087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31086 + pts count: 1 = new pts: 31087. update pts: 31004 < new pts 31087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31086 + pts count: 1 = new pts: 31087. update pts: 31014 < new pts 31087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31086 + pts count: 1 = new pts: 31087. update pts: 31023 < new pts 31087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31086 + pts count: 1 = new pts: 31087. update pts: 31051 < new pts 31087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31086 + pts count: 1 = new pts: 31087. update pts: 31057 < new pts 31087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31086 + pts count: 1 = new pts: 31087. update pts: 31058 < new pts 31087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31086 + pts count: 1 = new pts: 31087. update pts: 31059 < new pts 31087, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31086 + pts count: 1 = new pts: 31087. update pts: 31064 < new pts 31087, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1145268 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31088 + pts count: 1 = new pts: 31089. update pts: 28115 < new pts 31089, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31088 + pts count: 1 = new pts: 31089. update pts: 31004 < new pts 31089, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31088 + pts count: 1 = new pts: 31089. update pts: 31014 < new pts 31089, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31088 + pts count: 1 = new pts: 31089. update pts: 31023 < new pts 31089, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31088 + pts count: 1 = new pts: 31089. update pts: 31051 < new pts 31089, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31088 + pts count: 1 = new pts: 31089. update pts: 31057 < new pts 31089, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31088 + pts count: 1 = new pts: 31089. update pts: 31058 < new pts 31089, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31088 + pts count: 1 = new pts: 31089. update pts: 31059 < new pts 31089, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31088 + pts count: 1 = new pts: 31089. update pts: 31064 < new pts 31089, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1147177 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31089 + pts count: 1 = new pts: 31090. update pts: 28115 < new pts 31090, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31089 + pts count: 1 = new pts: 31090. update pts: 31004 < new pts 31090, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31089 + pts count: 1 = new pts: 31090. update pts: 31014 < new pts 31090, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31089 + pts count: 1 = new pts: 31090. update pts: 31023 < new pts 31090, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31089 + pts count: 1 = new pts: 31090. update pts: 31051 < new pts 31090, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31089 + pts count: 1 = new pts: 31090. update pts: 31057 < new pts 31090, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31089 + pts count: 1 = new pts: 31090. update pts: 31058 < new pts 31090, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31089 + pts count: 1 = new pts: 31090. update pts: 31059 < new pts 31090, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31089 + pts count: 1 = new pts: 31090. update pts: 31064 < new pts 31090, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1149085 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31090 + pts count: 1 = new pts: 31091. update pts: 28115 < new pts 31091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31090 + pts count: 1 = new pts: 31091. update pts: 31004 < new pts 31091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31090 + pts count: 1 = new pts: 31091. update pts: 31014 < new pts 31091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31090 + pts count: 1 = new pts: 31091. update pts: 31023 < new pts 31091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31090 + pts count: 1 = new pts: 31091. update pts: 31051 < new pts 31091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31090 + pts count: 1 = new pts: 31091. update pts: 31057 < new pts 31091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31090 + pts count: 1 = new pts: 31091. update pts: 31058 < new pts 31091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31090 + pts count: 1 = new pts: 31091. update pts: 31059 < new pts 31091, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31090 + pts count: 1 = new pts: 31091. update pts: 31064 < new pts 31091, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1152981 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31091 + pts count: 1 = new pts: 31092. update pts: 28115 < new pts 31092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31091 + pts count: 1 = new pts: 31092. update pts: 31004 < new pts 31092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31091 + pts count: 1 = new pts: 31092. update pts: 31014 < new pts 31092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31091 + pts count: 1 = new pts: 31092. update pts: 31023 < new pts 31092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31091 + pts count: 1 = new pts: 31092. update pts: 31051 < new pts 31092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31091 + pts count: 1 = new pts: 31092. update pts: 31057 < new pts 31092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31091 + pts count: 1 = new pts: 31092. update pts: 31058 < new pts 31092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31091 + pts count: 1 = new pts: 31092. update pts: 31059 < new pts 31092, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31091 + pts count: 1 = new pts: 31092. update pts: 31064 < new pts 31092, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1154890 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31092 + pts count: 1 = new pts: 31093. update pts: 28115 < new pts 31093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31092 + pts count: 1 = new pts: 31093. update pts: 31004 < new pts 31093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31092 + pts count: 1 = new pts: 31093. update pts: 31014 < new pts 31093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31092 + pts count: 1 = new pts: 31093. update pts: 31023 < new pts 31093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31092 + pts count: 1 = new pts: 31093. update pts: 31051 < new pts 31093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31092 + pts count: 1 = new pts: 31093. update pts: 31057 < new pts 31093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31092 + pts count: 1 = new pts: 31093. update pts: 31058 < new pts 31093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31092 + pts count: 1 = new pts: 31093. update pts: 31059 < new pts 31093, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31092 + pts count: 1 = new pts: 31093. update pts: 31064 < new pts 31093, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1159332 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31093 + pts count: 1 = new pts: 31094. update pts: 28115 < new pts 31094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31093 + pts count: 1 = new pts: 31094. update pts: 31004 < new pts 31094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31093 + pts count: 1 = new pts: 31094. update pts: 31014 < new pts 31094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31093 + pts count: 1 = new pts: 31094. update pts: 31023 < new pts 31094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31093 + pts count: 1 = new pts: 31094. update pts: 31051 < new pts 31094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31093 + pts count: 1 = new pts: 31094. update pts: 31057 < new pts 31094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31093 + pts count: 1 = new pts: 31094. update pts: 31058 < new pts 31094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31093 + pts count: 1 = new pts: 31094. update pts: 31059 < new pts 31094, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31093 + pts count: 1 = new pts: 31094. update pts: 31064 < new pts 31094, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1159211 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31094 + pts count: 1 = new pts: 31095. update pts: 28115 < new pts 31095, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31094 + pts count: 1 = new pts: 31095. update pts: 31004 < new pts 31095, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31094 + pts count: 1 = new pts: 31095. update pts: 31014 < new pts 31095, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31094 + pts count: 1 = new pts: 31095. update pts: 31023 < new pts 31095, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31094 + pts count: 1 = new pts: 31095. update pts: 31051 < new pts 31095, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31094 + pts count: 1 = new pts: 31095. update pts: 31057 < new pts 31095, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31094 + pts count: 1 = new pts: 31095. update pts: 31058 < new pts 31095, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31094 + pts count: 1 = new pts: 31095. update pts: 31059 < new pts 31095, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31094 + pts count: 1 = new pts: 31095. update pts: 31064 < new pts 31095, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1161119 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31095 + pts count: 1 = new pts: 31096. update pts: 28115 < new pts 31096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31095 + pts count: 1 = new pts: 31096. update pts: 31004 < new pts 31096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31095 + pts count: 1 = new pts: 31096. update pts: 31014 < new pts 31096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31095 + pts count: 1 = new pts: 31096. update pts: 31023 < new pts 31096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31095 + pts count: 1 = new pts: 31096. update pts: 31051 < new pts 31096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31095 + pts count: 1 = new pts: 31096. update pts: 31057 < new pts 31096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31095 + pts count: 1 = new pts: 31096. update pts: 31058 < new pts 31096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31095 + pts count: 1 = new pts: 31096. update pts: 31059 < new pts 31096, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31095 + pts count: 1 = new pts: 31096. update pts: 31064 < new pts 31096, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1162921 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31096 + pts count: 1 = new pts: 31097. update pts: 28115 < new pts 31097, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31096 + pts count: 1 = new pts: 31097. update pts: 31004 < new pts 31097, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31096 + pts count: 1 = new pts: 31097. update pts: 31014 < new pts 31097, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31096 + pts count: 1 = new pts: 31097. update pts: 31023 < new pts 31097, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31096 + pts count: 1 = new pts: 31097. update pts: 31051 < new pts 31097, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31096 + pts count: 1 = new pts: 31097. update pts: 31057 < new pts 31097, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31096 + pts count: 1 = new pts: 31097. update pts: 31058 < new pts 31097, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31096 + pts count: 1 = new pts: 31097. update pts: 31059 < new pts 31097, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31096 + pts count: 1 = new pts: 31097. update pts: 31064 < new pts 31097, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1167119 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31097 + pts count: 1 = new pts: 31098. update pts: 28115 < new pts 31098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31097 + pts count: 1 = new pts: 31098. update pts: 31004 < new pts 31098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31097 + pts count: 1 = new pts: 31098. update pts: 31014 < new pts 31098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31097 + pts count: 1 = new pts: 31098. update pts: 31023 < new pts 31098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31097 + pts count: 1 = new pts: 31098. update pts: 31051 < new pts 31098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31097 + pts count: 1 = new pts: 31098. update pts: 31057 < new pts 31098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31097 + pts count: 1 = new pts: 31098. update pts: 31058 < new pts 31098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31097 + pts count: 1 = new pts: 31098. update pts: 31059 < new pts 31098, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31097 + pts count: 1 = new pts: 31098. update pts: 31064 < new pts 31098, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1169024 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31098 + pts count: 1 = new pts: 31099. update pts: 28115 < new pts 31099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31098 + pts count: 1 = new pts: 31099. update pts: 31004 < new pts 31099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31098 + pts count: 1 = new pts: 31099. update pts: 31014 < new pts 31099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31098 + pts count: 1 = new pts: 31099. update pts: 31023 < new pts 31099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31098 + pts count: 1 = new pts: 31099. update pts: 31051 < new pts 31099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31098 + pts count: 1 = new pts: 31099. update pts: 31057 < new pts 31099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31098 + pts count: 1 = new pts: 31099. update pts: 31058 < new pts 31099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31098 + pts count: 1 = new pts: 31099. update pts: 31059 < new pts 31099, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31098 + pts count: 1 = new pts: 31099. update pts: 31064 < new pts 31099, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1173164 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31099 + pts count: 1 = new pts: 31100. update pts: 28115 < new pts 31100, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31099 + pts count: 1 = new pts: 31100. update pts: 31004 < new pts 31100, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31099 + pts count: 1 = new pts: 31100. update pts: 31014 < new pts 31100, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31099 + pts count: 1 = new pts: 31100. update pts: 31023 < new pts 31100, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31099 + pts count: 1 = new pts: 31100. update pts: 31051 < new pts 31100, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31099 + pts count: 1 = new pts: 31100. update pts: 31057 < new pts 31100, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31099 + pts count: 1 = new pts: 31100. update pts: 31058 < new pts 31100, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31099 + pts count: 1 = new pts: 31100. update pts: 31059 < new pts 31100, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31099 + pts count: 1 = new pts: 31100. update pts: 31064 < new pts 31100, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1173029 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31100 + pts count: 1 = new pts: 31101. update pts: 28115 < new pts 31101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31100 + pts count: 1 = new pts: 31101. update pts: 31004 < new pts 31101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31100 + pts count: 1 = new pts: 31101. update pts: 31014 < new pts 31101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31100 + pts count: 1 = new pts: 31101. update pts: 31023 < new pts 31101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31100 + pts count: 1 = new pts: 31101. update pts: 31051 < new pts 31101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31100 + pts count: 1 = new pts: 31101. update pts: 31057 < new pts 31101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31100 + pts count: 1 = new pts: 31101. update pts: 31058 < new pts 31101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31100 + pts count: 1 = new pts: 31101. update pts: 31059 < new pts 31101, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31100 + pts count: 1 = new pts: 31101. update pts: 31064 < new pts 31101, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1177334 bytes -AuthKeyHandler, danogentili: Calling 217270... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31101 + pts count: 1 = new pts: 31102. update pts: 28115 < new pts 31102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31101 + pts count: 1 = new pts: 31102. update pts: 31004 < new pts 31102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31101 + pts count: 1 = new pts: 31102. update pts: 31014 < new pts 31102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31101 + pts count: 1 = new pts: 31102. update pts: 31023 < new pts 31102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31101 + pts count: 1 = new pts: 31102. update pts: 31051 < new pts 31102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31101 + pts count: 1 = new pts: 31102. update pts: 31057 < new pts 31102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31101 + pts count: 1 = new pts: 31102. update pts: 31058 < new pts 31102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserTyping... -UpdateHandler, danogentili: Saving an update of type updateUserTyping... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31101 + pts count: 1 = new pts: 31102. update pts: 31059 < new pts 31102, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31101 + pts count: 1 = new pts: 31102. update pts: 31064 < new pts 31102, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1181723 bytes -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31112 + pts count: 1 = new pts: 31113. update pts: 28115 < new pts 31113, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 650496 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31112 + pts count: 1 = new pts: 31113. update pts: 28115 < new pts 31113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 656813 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31112 + pts count: 1 = new pts: 31113. update pts: 28115 < new pts 31113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 662423 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31112 + pts count: 1 = new pts: 31113. update pts: 28115 < new pts 31113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 668034 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31112 + pts count: 1 = new pts: 31113. update pts: 28115 < new pts 31113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 673644 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31112 + pts count: 1 = new pts: 31113. update pts: 28115 < new pts 31113, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 680280 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31113 + pts count: 1 = new pts: 31114. update pts: 28115 < new pts 31114, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 694635 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31116 + pts count: 1 = new pts: 31117. update pts: 28115 < new pts 31117, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 31118, pts count: 1, new pts: 31119 < update pts: 31120, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 714541 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31120 + pts count: 1 = new pts: 31121. update pts: 28115 < new pts 31121, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31120 + pts count: 1 = new pts: 31121, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31121 + pts count: 1 = new pts: 31122, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 722221 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 31122, pts count: 1, new pts: 31123 < update pts: 31124, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 31122, pts count: 1, new pts: 31123 < update pts: 31126, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31126 + pts count: 1 = new pts: 31127. update pts: 28115 < new pts 31127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31126 + pts count: 1 = new pts: 31127. update pts: 31121 < new pts 31127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31126 + pts count: 1 = new pts: 31127. update pts: 31122 < new pts 31127, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31126 + pts count: 1 = new pts: 31127. update pts: 31123 < new pts 31127, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 749355 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31127 + pts count: 1 = new pts: 31128. update pts: 28115 < new pts 31128, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31127 + pts count: 1 = new pts: 31128. update pts: 31121 < new pts 31128, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31127 + pts count: 1 = new pts: 31128. update pts: 31122 < new pts 31128, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31127 + pts count: 1 = new pts: 31128. update pts: 31123 < new pts 31128, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 755995 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31128 + pts count: 1 = new pts: 31129. update pts: 28115 < new pts 31129, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31128 + pts count: 1 = new pts: 31129. update pts: 31121 < new pts 31129, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31128 + pts count: 1 = new pts: 31129. update pts: 31122 < new pts 31129, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31128 + pts count: 1 = new pts: 31129. update pts: 31123 < new pts 31129, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31128 + pts count: 1 = new pts: 31129, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 770076 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31131 + pts count: 1 = new pts: 31132. update pts: 28115 < new pts 31132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31131 + pts count: 1 = new pts: 31132. update pts: 31121 < new pts 31132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31131 + pts count: 1 = new pts: 31132. update pts: 31122 < new pts 31132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31131 + pts count: 1 = new pts: 31132. update pts: 31123 < new pts 31132, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31131 + pts count: 1 = new pts: 31132. update pts: 31129 < new pts 31132, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 780989 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31133 + pts count: 1 = new pts: 31134, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31134 + pts count: 1 = new pts: 31135. update pts: 28115 < new pts 31135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31134 + pts count: 1 = new pts: 31135. update pts: 31121 < new pts 31135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31134 + pts count: 1 = new pts: 31135. update pts: 31122 < new pts 31135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31134 + pts count: 1 = new pts: 31135. update pts: 31123 < new pts 31135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31134 + pts count: 1 = new pts: 31135. update pts: 31129 < new pts 31135, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 788204 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31134 + pts count: 1 = new pts: 31135. update pts: 28115 < new pts 31135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31134 + pts count: 1 = new pts: 31135. update pts: 31121 < new pts 31135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31134 + pts count: 1 = new pts: 31135. update pts: 31122 < new pts 31135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31134 + pts count: 1 = new pts: 31135. update pts: 31123 < new pts 31135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31134 + pts count: 1 = new pts: 31135. update pts: 31129 < new pts 31135, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31134 + pts count: 1 = new pts: 31135, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 807083 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31137 + pts count: 1 = new pts: 31138. update pts: 28115 < new pts 31138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31137 + pts count: 1 = new pts: 31138. update pts: 31121 < new pts 31138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31137 + pts count: 1 = new pts: 31138. update pts: 31122 < new pts 31138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31137 + pts count: 1 = new pts: 31138. update pts: 31123 < new pts 31138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31137 + pts count: 1 = new pts: 31138. update pts: 31129 < new pts 31138, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31137 + pts count: 1 = new pts: 31138. update pts: 31135 < new pts 31138, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31137 + pts count: 1 = new pts: 31138, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 819418 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31139 + pts count: 1 = new pts: 31140. update pts: 28115 < new pts 31140, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31139 + pts count: 1 = new pts: 31140. update pts: 31121 < new pts 31140, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31139 + pts count: 1 = new pts: 31140. update pts: 31122 < new pts 31140, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31139 + pts count: 1 = new pts: 31140. update pts: 31123 < new pts 31140, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31139 + pts count: 1 = new pts: 31140. update pts: 31129 < new pts 31140, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31139 + pts count: 1 = new pts: 31140. update pts: 31135 < new pts 31140, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 833553 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31141 + pts count: 1 = new pts: 31142. update pts: 28115 < new pts 31142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31141 + pts count: 1 = new pts: 31142. update pts: 31121 < new pts 31142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31141 + pts count: 1 = new pts: 31142. update pts: 31122 < new pts 31142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31141 + pts count: 1 = new pts: 31142. update pts: 31123 < new pts 31142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31141 + pts count: 1 = new pts: 31142. update pts: 31129 < new pts 31142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31141 + pts count: 1 = new pts: 31142. update pts: 31135 < new pts 31142, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31141 + pts count: 1 = new pts: 31142, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31142 + pts count: 1 = new pts: 31143, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31143 + pts count: 1 = new pts: 31144, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31144 + pts count: 1 = new pts: 31145, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 847032 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31145 + pts count: 1 = new pts: 31146. update pts: 28115 < new pts 31146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31145 + pts count: 1 = new pts: 31146. update pts: 31121 < new pts 31146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31145 + pts count: 1 = new pts: 31146. update pts: 31122 < new pts 31146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31145 + pts count: 1 = new pts: 31146. update pts: 31123 < new pts 31146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31145 + pts count: 1 = new pts: 31146. update pts: 31129 < new pts 31146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31145 + pts count: 1 = new pts: 31146. update pts: 31135 < new pts 31146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31145 + pts count: 1 = new pts: 31146. update pts: 31142 < new pts 31146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31145 + pts count: 1 = new pts: 31146. update pts: 31143 < new pts 31146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31145 + pts count: 1 = new pts: 31146. update pts: 31144 < new pts 31146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31145 + pts count: 1 = new pts: 31146. update pts: 31145 < new pts 31146, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31145 + pts count: 1 = new pts: 31146, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31146 + pts count: 1 = new pts: 31147, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 858437 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31147 + pts count: 1 = new pts: 31148. update pts: 28115 < new pts 31148, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31147 + pts count: 1 = new pts: 31148. update pts: 31121 < new pts 31148, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31147 + pts count: 1 = new pts: 31148. update pts: 31122 < new pts 31148, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31147 + pts count: 1 = new pts: 31148. update pts: 31123 < new pts 31148, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31147 + pts count: 1 = new pts: 31148. update pts: 31129 < new pts 31148, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31147 + pts count: 1 = new pts: 31148. update pts: 31135 < new pts 31148, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31147 + pts count: 1 = new pts: 31148. update pts: 31142 < new pts 31148, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31147 + pts count: 1 = new pts: 31148. update pts: 31143 < new pts 31148, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31147 + pts count: 1 = new pts: 31148. update pts: 31144 < new pts 31148, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31147 + pts count: 1 = new pts: 31148. update pts: 31145 < new pts 31148, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31147 + pts count: 1 = new pts: 31148. update pts: 31146 < new pts 31148, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31147 + pts count: 1 = new pts: 31148. update pts: 31147 < new pts 31148, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31147 + pts count: 1 = new pts: 31148, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 869832 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31149 + pts count: 1 = new pts: 31150. update pts: 28115 < new pts 31150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31149 + pts count: 1 = new pts: 31150. update pts: 31121 < new pts 31150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31149 + pts count: 1 = new pts: 31150. update pts: 31122 < new pts 31150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31149 + pts count: 1 = new pts: 31150. update pts: 31123 < new pts 31150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31149 + pts count: 1 = new pts: 31150. update pts: 31129 < new pts 31150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31149 + pts count: 1 = new pts: 31150. update pts: 31135 < new pts 31150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31149 + pts count: 1 = new pts: 31150. update pts: 31142 < new pts 31150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31149 + pts count: 1 = new pts: 31150. update pts: 31143 < new pts 31150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31149 + pts count: 1 = new pts: 31150. update pts: 31144 < new pts 31150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31149 + pts count: 1 = new pts: 31150. update pts: 31145 < new pts 31150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31149 + pts count: 1 = new pts: 31150. update pts: 31146 < new pts 31150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31149 + pts count: 1 = new pts: 31150. update pts: 31147 < new pts 31150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31149 + pts count: 1 = new pts: 31150. update pts: 31148 < new pts 31150, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31149 + pts count: 1 = new pts: 31150, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31150 + pts count: 1 = new pts: 31151, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 880447 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31151 + pts count: 1 = new pts: 31152. update pts: 28115 < new pts 31152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31151 + pts count: 1 = new pts: 31152. update pts: 31121 < new pts 31152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31151 + pts count: 1 = new pts: 31152. update pts: 31122 < new pts 31152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31151 + pts count: 1 = new pts: 31152. update pts: 31123 < new pts 31152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31151 + pts count: 1 = new pts: 31152. update pts: 31129 < new pts 31152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31151 + pts count: 1 = new pts: 31152. update pts: 31135 < new pts 31152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31151 + pts count: 1 = new pts: 31152. update pts: 31142 < new pts 31152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31151 + pts count: 1 = new pts: 31152. update pts: 31143 < new pts 31152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31151 + pts count: 1 = new pts: 31152. update pts: 31144 < new pts 31152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31151 + pts count: 1 = new pts: 31152. update pts: 31145 < new pts 31152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31151 + pts count: 1 = new pts: 31152. update pts: 31146 < new pts 31152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31151 + pts count: 1 = new pts: 31152. update pts: 31147 < new pts 31152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31151 + pts count: 1 = new pts: 31152. update pts: 31148 < new pts 31152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31151 + pts count: 1 = new pts: 31152. update pts: 31150 < new pts 31152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31151 + pts count: 1 = new pts: 31152. update pts: 31151 < new pts 31152, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31151 + pts count: 1 = new pts: 31152, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31152 + pts count: 1 = new pts: 31153, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 889125 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 28115 < new pts 31154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 31121 < new pts 31154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 31122 < new pts 31154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 31123 < new pts 31154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 31129 < new pts 31154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 31135 < new pts 31154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 31142 < new pts 31154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 31143 < new pts 31154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 31144 < new pts 31154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 31145 < new pts 31154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 31146 < new pts 31154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 31147 < new pts 31154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 31148 < new pts 31154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 31150 < new pts 31154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 31151 < new pts 31154, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 31152 < new pts 31154, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31153 + pts count: 1 = new pts: 31154. update pts: 31153 < new pts 31154, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 895383 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 28115 < new pts 31155, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 31121 < new pts 31155, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 31122 < new pts 31155, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 31123 < new pts 31155, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 31129 < new pts 31155, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 31135 < new pts 31155, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 31142 < new pts 31155, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 31143 < new pts 31155, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 31144 < new pts 31155, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 31145 < new pts 31155, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 31146 < new pts 31155, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 31147 < new pts 31155, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 31148 < new pts 31155, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 31150 < new pts 31155, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 31151 < new pts 31155, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 31152 < new pts 31155, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31154 + pts count: 1 = new pts: 31155. update pts: 31153 < new pts 31155, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 903723 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 28115 < new pts 31156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 31121 < new pts 31156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 31122 < new pts 31156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 31123 < new pts 31156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 31129 < new pts 31156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 31135 < new pts 31156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 31142 < new pts 31156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 31143 < new pts 31156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 31144 < new pts 31156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 31145 < new pts 31156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 31146 < new pts 31156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 31147 < new pts 31156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 31148 < new pts 31156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 31150 < new pts 31156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 31151 < new pts 31156, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 31152 < new pts 31156, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31155 + pts count: 1 = new pts: 31156. update pts: 31153 < new pts 31156, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 911563 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 28115 < new pts 31157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 31121 < new pts 31157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 31122 < new pts 31157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 31123 < new pts 31157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 31129 < new pts 31157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 31135 < new pts 31157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 31142 < new pts 31157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 31143 < new pts 31157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 31144 < new pts 31157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 31145 < new pts 31157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 31146 < new pts 31157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 31147 < new pts 31157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 31148 < new pts 31157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 31150 < new pts 31157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 31151 < new pts 31157, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 31152 < new pts 31157, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31156 + pts count: 1 = new pts: 31157. update pts: 31153 < new pts 31157, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 922448 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 28115 < new pts 31158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 31121 < new pts 31158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 31122 < new pts 31158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 31123 < new pts 31158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 31129 < new pts 31158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 31135 < new pts 31158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 31142 < new pts 31158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 31143 < new pts 31158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 31144 < new pts 31158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 31145 < new pts 31158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 31146 < new pts 31158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 31147 < new pts 31158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 31148 < new pts 31158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 31150 < new pts 31158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 31151 < new pts 31158, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 31152 < new pts 31158, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31157 + pts count: 1 = new pts: 31158. update pts: 31153 < new pts 31158, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 929102 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 28115 < new pts 31159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 31121 < new pts 31159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 31122 < new pts 31159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 31123 < new pts 31159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 31129 < new pts 31159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 31135 < new pts 31159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 31142 < new pts 31159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 31143 < new pts 31159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 31144 < new pts 31159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 31145 < new pts 31159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 31146 < new pts 31159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 31147 < new pts 31159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 31148 < new pts 31159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 31150 < new pts 31159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 31151 < new pts 31159, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 31152 < new pts 31159, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31158 + pts count: 1 = new pts: 31159. update pts: 31153 < new pts 31159, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 937442 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 28115 < new pts 31160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 31121 < new pts 31160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 31122 < new pts 31160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 31123 < new pts 31160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 31129 < new pts 31160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 31135 < new pts 31160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 31142 < new pts 31160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 31143 < new pts 31160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 31144 < new pts 31160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 31145 < new pts 31160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 31146 < new pts 31160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 31147 < new pts 31160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 31148 < new pts 31160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 31150 < new pts 31160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 31151 < new pts 31160, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 31152 < new pts 31160, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31159 + pts count: 1 = new pts: 31160. update pts: 31153 < new pts 31160, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 948829 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 28115 < new pts 31161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 31121 < new pts 31161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 31122 < new pts 31161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 31123 < new pts 31161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 31129 < new pts 31161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 31135 < new pts 31161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 31142 < new pts 31161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 31143 < new pts 31161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 31144 < new pts 31161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 31145 < new pts 31161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 31146 < new pts 31161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 31147 < new pts 31161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 31148 < new pts 31161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 31150 < new pts 31161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 31151 < new pts 31161, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 31152 < new pts 31161, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31160 + pts count: 1 = new pts: 31161. update pts: 31153 < new pts 31161, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 957148 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 28115 < new pts 31162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 31121 < new pts 31162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 31122 < new pts 31162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 31123 < new pts 31162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 31129 < new pts 31162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 31135 < new pts 31162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 31142 < new pts 31162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 31143 < new pts 31162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 31144 < new pts 31162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 31145 < new pts 31162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 31146 < new pts 31162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 31147 < new pts 31162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 31148 < new pts 31162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 31150 < new pts 31162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 31151 < new pts 31162, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 31152 < new pts 31162, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31161 + pts count: 1 = new pts: 31162. update pts: 31153 < new pts 31162, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 965516 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 28115 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31121 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31122 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31123 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31129 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31135 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31142 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31143 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31144 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31145 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31146 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31147 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31148 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31150 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31151 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31152 < new pts 31163, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31153 < new pts 31163, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 969570 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 28115 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31121 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31122 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31123 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31129 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31135 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31142 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31143 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31144 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31145 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31146 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31147 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31148 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31150 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31151 < new pts 31163, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31152 < new pts 31163, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31162 + pts count: 1 = new pts: 31163. update pts: 31153 < new pts 31163, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 31162, pts count: 1, new pts: 31163 < update pts: 31164, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 987656 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 28115 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31121 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31122 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31123 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31129 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31135 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31142 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31143 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31144 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31145 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31146 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31147 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31148 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31150 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31151 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31152 < new pts 31166, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31153 < new pts 31166, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 988053 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 28115 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31121 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31122 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31123 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31129 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31135 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31142 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31143 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31144 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31145 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31146 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31147 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31148 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31150 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31151 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31152 < new pts 31166, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31153 < new pts 31166, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 988975 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 28115 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31121 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31122 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31123 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31129 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31135 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31142 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31143 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31144 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31145 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31146 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31147 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31148 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31150 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31151 < new pts 31166, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31152 < new pts 31166, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31165 + pts count: 1 = new pts: 31166. update pts: 31153 < new pts 31166, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 992089 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 28115 < new pts 31169, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 31121 < new pts 31169, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 31122 < new pts 31169, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 31123 < new pts 31169, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 31129 < new pts 31169, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 31135 < new pts 31169, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 31142 < new pts 31169, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 31143 < new pts 31169, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 31144 < new pts 31169, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 31145 < new pts 31169, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 31146 < new pts 31169, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 31147 < new pts 31169, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 31148 < new pts 31169, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 31150 < new pts 31169, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 31151 < new pts 31169, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 31152 < new pts 31169, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31168 + pts count: 1 = new pts: 31169. update pts: 31153 < new pts 31169, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 997612 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 31169, pts count: 1, new pts: 31170 < update pts: 31172, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 28115 < new pts 31173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 31121 < new pts 31173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 31122 < new pts 31173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 31123 < new pts 31173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 31129 < new pts 31173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 31135 < new pts 31173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 31142 < new pts 31173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 31143 < new pts 31173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 31144 < new pts 31173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 31145 < new pts 31173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 31146 < new pts 31173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 31147 < new pts 31173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 31148 < new pts 31173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 31150 < new pts 31173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 31151 < new pts 31173, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 31152 < new pts 31173, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31172 + pts count: 1 = new pts: 31173. update pts: 31153 < new pts 31173, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 31172, pts count: 1, new pts: 31173 < update pts: 31174, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1012943 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 28115 < new pts 31175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 31121 < new pts 31175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 31122 < new pts 31175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 31123 < new pts 31175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 31129 < new pts 31175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 31135 < new pts 31175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 31142 < new pts 31175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 31143 < new pts 31175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 31144 < new pts 31175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 31145 < new pts 31175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 31146 < new pts 31175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 31147 < new pts 31175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 31148 < new pts 31175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 31150 < new pts 31175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 31151 < new pts 31175, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 31152 < new pts 31175, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31174 + pts count: 1 = new pts: 31175. update pts: 31153 < new pts 31175, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1008079 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31174 + pts count: 1 = new pts: 31175, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 28115 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31121 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31122 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31123 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31129 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31135 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31142 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31143 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31144 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31145 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31146 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31147 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31148 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31150 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31151 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31152 < new pts 31176, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31153 < new pts 31176, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1006723 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 28115 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31121 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31122 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31123 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31129 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31135 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31142 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31143 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31144 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31145 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31146 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31147 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31148 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31150 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31151 < new pts 31176, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31152 < new pts 31176, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31175 + pts count: 1 = new pts: 31176. update pts: 31153 < new pts 31176, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1007270 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 28115 < new pts 31177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 31121 < new pts 31177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 31122 < new pts 31177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 31123 < new pts 31177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 31129 < new pts 31177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 31135 < new pts 31177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 31142 < new pts 31177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 31143 < new pts 31177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 31144 < new pts 31177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 31145 < new pts 31177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 31146 < new pts 31177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 31147 < new pts 31177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 31148 < new pts 31177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 31150 < new pts 31177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 31151 < new pts 31177, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 31152 < new pts 31177, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31176 + pts count: 1 = new pts: 31177. update pts: 31153 < new pts 31177, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -Wrote 1011871 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31178 + pts count: 1 = new pts: 31179, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 28115 < new pts 31180, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 31121 < new pts 31180, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 31122 < new pts 31180, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 31123 < new pts 31180, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 31129 < new pts 31180, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 31135 < new pts 31180, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 31142 < new pts 31180, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 31143 < new pts 31180, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 31144 < new pts 31180, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 31145 < new pts 31180, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 31146 < new pts 31180, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 31147 < new pts 31180, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 31148 < new pts 31180, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 31150 < new pts 31180, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 31151 < new pts 31180, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 31152 < new pts 31180, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31179 + pts count: 1 = new pts: 31180. update pts: 31153 < new pts 31180, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1016472 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31179 + pts count: 1 = new pts: 31180, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 28115 < new pts 31181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 31121 < new pts 31181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 31122 < new pts 31181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 31123 < new pts 31181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 31129 < new pts 31181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 31135 < new pts 31181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 31142 < new pts 31181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 31143 < new pts 31181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 31144 < new pts 31181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 31145 < new pts 31181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 31146 < new pts 31181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 31147 < new pts 31181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 31148 < new pts 31181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 31150 < new pts 31181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 31151 < new pts 31181, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 31152 < new pts 31181, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31180 + pts count: 1 = new pts: 31181. update pts: 31153 < new pts 31181, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1019180 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31180 + pts count: 1 = new pts: 31181, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 28115 < new pts 31182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 31121 < new pts 31182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 31122 < new pts 31182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 31123 < new pts 31182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 31129 < new pts 31182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 31135 < new pts 31182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 31142 < new pts 31182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 31143 < new pts 31182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 31144 < new pts 31182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 31145 < new pts 31182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 31146 < new pts 31182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 31147 < new pts 31182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 31148 < new pts 31182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 31150 < new pts 31182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 31151 < new pts 31182, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 31152 < new pts 31182, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31181 + pts count: 1 = new pts: 31182. update pts: 31153 < new pts 31182, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1017209 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31181 + pts count: 1 = new pts: 31182, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 28115 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31121 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31122 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31123 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31129 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31135 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31142 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31143 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31144 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31145 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31146 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31147 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31148 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31150 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31151 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31152 < new pts 31183, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31153 < new pts 31183, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1015949 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 28115 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31121 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31122 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31123 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31129 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31135 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31142 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31143 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31144 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31145 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31146 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31147 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31148 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31150 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31151 < new pts 31183, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31152 < new pts 31183, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31182 + pts count: 1 = new pts: 31183. update pts: 31153 < new pts 31183, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1017047 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 28115 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31121 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31122 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31123 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31129 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31135 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31142 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31143 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31144 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31145 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31146 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31147 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31148 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31150 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31151 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31152 < new pts 31184, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31153 < new pts 31184, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1015073 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 28115 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31121 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31122 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31123 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31129 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31135 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31142 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31143 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31144 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31145 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31146 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31147 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31148 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31150 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31151 < new pts 31184, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31152 < new pts 31184, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31183 + pts count: 1 = new pts: 31184. update pts: 31153 < new pts 31184, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1011882 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31183 + pts count: 1 = new pts: 31184, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31184 + pts count: 1 = new pts: 31185, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 28115 < new pts 31186, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 31121 < new pts 31186, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 31122 < new pts 31186, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 31123 < new pts 31186, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 31129 < new pts 31186, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 31135 < new pts 31186, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 31142 < new pts 31186, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 31143 < new pts 31186, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 31144 < new pts 31186, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 31145 < new pts 31186, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 31146 < new pts 31186, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 31147 < new pts 31186, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 31148 < new pts 31186, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 31150 < new pts 31186, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 31151 < new pts 31186, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 31152 < new pts 31186, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31185 + pts count: 1 = new pts: 31186. update pts: 31153 < new pts 31186, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1019115 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 28115 < new pts 31188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 31121 < new pts 31188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 31122 < new pts 31188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 31123 < new pts 31188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 31129 < new pts 31188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 31135 < new pts 31188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 31142 < new pts 31188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 31143 < new pts 31188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 31144 < new pts 31188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 31145 < new pts 31188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 31146 < new pts 31188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 31147 < new pts 31188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 31148 < new pts 31188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 31150 < new pts 31188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 31151 < new pts 31188, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 31152 < new pts 31188, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31187 + pts count: 1 = new pts: 31188. update pts: 31153 < new pts 31188, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1019980 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31188 + pts count: 1 = new pts: 31189, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 28115 < new pts 31190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31121 < new pts 31190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31122 < new pts 31190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31123 < new pts 31190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31129 < new pts 31190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31135 < new pts 31190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31142 < new pts 31190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31143 < new pts 31190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31144 < new pts 31190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31145 < new pts 31190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31146 < new pts 31190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31147 < new pts 31190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31148 < new pts 31190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31150 < new pts 31190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31151 < new pts 31190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31152 < new pts 31190, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31153 < new pts 31190, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31189 + pts count: 1 = new pts: 31190. update pts: 31188 < new pts 31190, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1024081 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 28115 < new pts 31192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31121 < new pts 31192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31122 < new pts 31192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31123 < new pts 31192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31129 < new pts 31192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31135 < new pts 31192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31142 < new pts 31192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31143 < new pts 31192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31144 < new pts 31192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31145 < new pts 31192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31146 < new pts 31192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31147 < new pts 31192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31148 < new pts 31192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31150 < new pts 31192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31151 < new pts 31192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31152 < new pts 31192, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31153 < new pts 31192, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31191 + pts count: 1 = new pts: 31192. update pts: 31188 < new pts 31192, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1021868 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31191 + pts count: 1 = new pts: 31192, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 28115 < new pts 31193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31121 < new pts 31193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31122 < new pts 31193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31123 < new pts 31193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31129 < new pts 31193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31135 < new pts 31193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31142 < new pts 31193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31143 < new pts 31193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31144 < new pts 31193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31145 < new pts 31193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31146 < new pts 31193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31147 < new pts 31193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31148 < new pts 31193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31150 < new pts 31193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31151 < new pts 31193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31152 < new pts 31193, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31153 < new pts 31193, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31192 + pts count: 1 = new pts: 31193. update pts: 31188 < new pts 31193, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1022505 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31192 + pts count: 1 = new pts: 31193, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 28115 < new pts 31194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31121 < new pts 31194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31122 < new pts 31194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31123 < new pts 31194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31129 < new pts 31194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31135 < new pts 31194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31142 < new pts 31194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31143 < new pts 31194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31144 < new pts 31194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31145 < new pts 31194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31146 < new pts 31194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31147 < new pts 31194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31148 < new pts 31194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31150 < new pts 31194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31151 < new pts 31194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31152 < new pts 31194, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31153 < new pts 31194, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31193 + pts count: 1 = new pts: 31194. update pts: 31188 < new pts 31194, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1021095 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31193 + pts count: 1 = new pts: 31194, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 28115 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31121 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31122 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31123 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31129 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31135 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31142 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31143 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31144 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31145 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31146 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31147 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31148 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31150 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31151 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31152 < new pts 31195, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31153 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31188 < new pts 31195, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1024210 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 28115 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31121 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31122 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31123 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31129 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31135 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31142 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31143 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31144 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31145 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31146 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31147 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31148 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31150 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31151 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31152 < new pts 31195, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31153 < new pts 31195, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31194 + pts count: 1 = new pts: 31195. update pts: 31188 < new pts 31195, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1025710 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 28115 < new pts 31196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31121 < new pts 31196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31122 < new pts 31196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31123 < new pts 31196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31129 < new pts 31196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31135 < new pts 31196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31142 < new pts 31196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31143 < new pts 31196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31144 < new pts 31196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31145 < new pts 31196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31146 < new pts 31196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31147 < new pts 31196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31148 < new pts 31196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31150 < new pts 31196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31151 < new pts 31196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31152 < new pts 31196, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31153 < new pts 31196, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31195 + pts count: 1 = new pts: 31196. update pts: 31188 < new pts 31196, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1029090 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 28115 < new pts 31197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31121 < new pts 31197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31122 < new pts 31197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31123 < new pts 31197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31129 < new pts 31197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31135 < new pts 31197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31142 < new pts 31197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31143 < new pts 31197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31144 < new pts 31197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31145 < new pts 31197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31146 < new pts 31197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31147 < new pts 31197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31148 < new pts 31197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31150 < new pts 31197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31151 < new pts 31197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31152 < new pts 31197, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31153 < new pts 31197, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31196 + pts count: 1 = new pts: 31197. update pts: 31188 < new pts 31197, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1030690 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31197 + pts count: 1 = new pts: 31198, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 28115 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31121 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31122 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31123 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31129 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31135 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31142 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31143 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31144 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31145 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31146 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31147 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31148 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31150 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31151 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31152 < new pts 31199, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31153 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31188 < new pts 31199, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1033791 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 28115 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31121 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31122 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31123 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31129 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31135 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31142 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31143 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31144 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31145 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31146 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31147 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31148 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31150 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31151 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31152 < new pts 31199, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31153 < new pts 31199, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31198 + pts count: 1 = new pts: 31199. update pts: 31188 < new pts 31199, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1035297 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 28115 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31121 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31122 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31123 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31129 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31135 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31142 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31143 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31144 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31145 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31146 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31147 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31148 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31150 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31151 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31152 < new pts 31200, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31153 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31188 < new pts 31200, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1036259 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 28115 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31121 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31122 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31123 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31129 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31135 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31142 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31143 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31144 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31145 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31146 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31147 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31148 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31150 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31151 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31152 < new pts 31200, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31153 < new pts 31200, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31199 + pts count: 1 = new pts: 31200. update pts: 31188 < new pts 31200, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1038110 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 28115 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31121 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31122 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31123 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31129 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31135 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31142 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31143 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31144 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31145 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31146 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31147 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31148 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31150 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31151 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31152 < new pts 31202, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31153 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31201 + pts count: 1 = new pts: 31202. update pts: 31188 < new pts 31202, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31201 + pts count: 1 = new pts: 31202, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1037742 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 28115 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31121 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31122 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31123 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31129 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31135 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31142 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31143 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31144 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31145 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31146 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31147 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31148 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31150 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31151 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31152 < new pts 31203, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31153 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31188 < new pts 31203, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31202 + pts count: 1 = new pts: 31203. update pts: 31202 < new pts 31203, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1041955 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31204 + pts count: 1 = new pts: 31205, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 28115 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31121 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31122 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31123 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31129 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31135 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31142 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31143 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31144 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31145 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31146 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31147 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31148 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31150 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31151 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31152 < new pts 31206, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31153 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31188 < new pts 31206, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31205 + pts count: 1 = new pts: 31206. update pts: 31202 < new pts 31206, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1043823 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 28115 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31121 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31122 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31123 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31129 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31135 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31142 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31143 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31144 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31145 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31146 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31147 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31148 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31150 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31151 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31152 < new pts 31208, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31153 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31188 < new pts 31208, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31207 + pts count: 1 = new pts: 31208. update pts: 31202 < new pts 31208, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1042815 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31207 + pts count: 1 = new pts: 31208, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 28115 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31121 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31122 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31123 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31129 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31135 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31142 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31143 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31144 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31145 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31146 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31147 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31148 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31150 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31151 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31152 < new pts 31209, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31153 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31188 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31202 < new pts 31209, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1042627 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 28115 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31121 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31122 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31123 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31129 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31135 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31142 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31143 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31144 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31145 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31146 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31147 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31148 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31150 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31151 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31152 < new pts 31209, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31153 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31188 < new pts 31209, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31208 + pts count: 1 = new pts: 31209. update pts: 31202 < new pts 31209, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1042029 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31209 + pts count: 1 = new pts: 31210, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 28115 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31121 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31122 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31123 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31129 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31135 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31142 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31143 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31144 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31145 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31146 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31147 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31148 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31150 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31151 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31152 < new pts 31211, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31153 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31188 < new pts 31211, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31210 + pts count: 1 = new pts: 31211. update pts: 31202 < new pts 31211, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1041309 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31210 + pts count: 1 = new pts: 31211, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 28115 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31121 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31122 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31123 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31129 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31135 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31142 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31143 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31144 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31145 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31146 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31147 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31148 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31150 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31151 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31152 < new pts 31212, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31153 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31188 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31202 < new pts 31212, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1040615 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 28115 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31121 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31122 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31123 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31129 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31135 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31142 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31143 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31144 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31145 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31146 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31147 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31148 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31150 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31151 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31152 < new pts 31212, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31153 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31188 < new pts 31212, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31211 + pts count: 1 = new pts: 31212. update pts: 31202 < new pts 31212, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1044439 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 28115 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31121 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31122 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31123 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31129 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31135 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31142 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31143 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31144 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31145 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31146 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31147 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31148 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31150 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31151 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31152 < new pts 31213, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31153 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31188 < new pts 31213, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31212 + pts count: 1 = new pts: 31213. update pts: 31202 < new pts 31213, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1047056 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 28115 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31121 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31122 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31123 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31129 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31135 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31142 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31143 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31144 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31145 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31146 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31147 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31148 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31150 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31151 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31152 < new pts 31214, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31153 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31188 < new pts 31214, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31213 + pts count: 1 = new pts: 31214. update pts: 31202 < new pts 31214, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1046238 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31214 + pts count: 1 = new pts: 31215, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 28115 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31121 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31122 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31123 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31129 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31135 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31142 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31143 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31144 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31145 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31146 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31147 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31148 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31150 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31151 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31152 < new pts 31216, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31153 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31188 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31202 < new pts 31216, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1047462 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 28115 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31121 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31122 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31123 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31129 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31135 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31142 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31143 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31144 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31145 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31146 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31147 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31148 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31150 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31151 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31152 < new pts 31216, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31153 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31188 < new pts 31216, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31215 + pts count: 1 = new pts: 31216. update pts: 31202 < new pts 31216, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1048402 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 31215, pts count: 1, new pts: 31216 < update pts: 31218, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 28115 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31121 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31122 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31123 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31129 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31135 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31142 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31143 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31144 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31145 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31146 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31147 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31148 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31150 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31151 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31152 < new pts 31219, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31153 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31188 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31202 < new pts 31219, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1050086 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 28115 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31121 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31122 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31123 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31129 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31135 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31142 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31143 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31144 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31145 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31146 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31147 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31148 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31150 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31151 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31152 < new pts 31219, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31153 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31188 < new pts 31219, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31218 + pts count: 1 = new pts: 31219. update pts: 31202 < new pts 31219, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1051329 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 28115 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31121 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31122 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31123 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31129 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31135 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31142 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31143 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31144 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31145 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31146 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31147 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31148 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31150 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31151 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31152 < new pts 31220, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31153 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31188 < new pts 31220, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31219 + pts count: 1 = new pts: 31220. update pts: 31202 < new pts 31220, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1051459 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 28115 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31121 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31122 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31123 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31129 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31135 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31142 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31143 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31144 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31145 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31146 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31147 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31148 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31150 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31151 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31152 < new pts 31223, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31153 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31188 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31202 < new pts 31223, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1047828 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 28115 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31121 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31122 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31123 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31129 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31135 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31142 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31143 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31144 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31145 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31146 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31147 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31148 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31150 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31151 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31152 < new pts 31223, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31153 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31188 < new pts 31223, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31222 + pts count: 1 = new pts: 31223. update pts: 31202 < new pts 31223, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1051214 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 28115 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31121 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31122 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31123 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31129 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31135 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31142 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31143 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31144 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31145 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31146 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31147 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31148 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31150 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31151 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31152 < new pts 31224, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31153 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31188 < new pts 31224, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31223 + pts count: 1 = new pts: 31224. update pts: 31202 < new pts 31224, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1054826 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 28115 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31121 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31122 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31123 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31129 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31135 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31142 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31143 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31144 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31145 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31146 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31147 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31148 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31150 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31151 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31152 < new pts 31225, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31153 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31188 < new pts 31225, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31224 + pts count: 1 = new pts: 31225. update pts: 31202 < new pts 31225, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1056380 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 28115 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31121 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31122 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31123 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31129 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31135 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31142 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31143 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31144 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31145 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31146 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31147 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31148 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31150 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31151 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31152 < new pts 31226, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31153 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31188 < new pts 31226, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31225 + pts count: 1 = new pts: 31226. update pts: 31202 < new pts 31226, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1056657 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31226 + pts count: 1 = new pts: 31227, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 28115 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31121 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31122 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31123 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31129 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31135 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31142 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31143 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31144 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31145 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31146 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31147 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31148 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31150 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31151 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31152 < new pts 31228, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31153 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31188 < new pts 31228, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31227 + pts count: 1 = new pts: 31228. update pts: 31202 < new pts 31228, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1058009 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31227 + pts count: 1 = new pts: 31228, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 28115 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31121 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31122 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31123 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31129 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31135 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31142 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31143 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31144 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31145 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31146 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31147 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31148 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31150 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31151 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31152 < new pts 31229, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31153 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31188 < new pts 31229, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31228 + pts count: 1 = new pts: 31229. update pts: 31202 < new pts 31229, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1059424 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31228 + pts count: 1 = new pts: 31229, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 28115 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31121 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31122 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31123 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31129 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31135 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31142 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31143 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31144 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31145 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31146 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31147 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31148 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31150 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31151 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31152 < new pts 31230, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31153 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31188 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31202 < new pts 31230, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1059451 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 28115 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31121 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31122 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31123 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31129 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31135 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31142 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31143 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31144 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31145 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31146 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31147 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31148 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31150 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31151 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31152 < new pts 31230, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31153 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31188 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31202 < new pts 31230, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1060364 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 28115 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31121 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31122 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31123 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31129 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31135 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31142 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31143 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31144 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31145 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31146 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31147 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31148 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31150 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31151 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31152 < new pts 31230, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31153 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31188 < new pts 31230, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31229 + pts count: 1 = new pts: 31230. update pts: 31202 < new pts 31230, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1065237 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 28115 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31121 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31122 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31123 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31129 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31135 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31142 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31143 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31144 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31145 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31146 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31147 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31148 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31150 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31151 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31152 < new pts 31233, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31153 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31188 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31202 < new pts 31233, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1066443 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 28115 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31121 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31122 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31123 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31129 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31135 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31142 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31143 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31144 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31145 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31146 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31147 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31148 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31150 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31151 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31152 < new pts 31233, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31153 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31188 < new pts 31233, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31232 + pts count: 1 = new pts: 31233. update pts: 31202 < new pts 31233, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 31234, pts count: 1, new pts: 31235 < update pts: 31236, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1076706 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 28115 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31121 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31122 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31123 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31129 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31135 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31142 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31143 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31144 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31145 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31146 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31147 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31148 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31150 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31151 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31152 < new pts 31237, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31153 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31188 < new pts 31237, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31236 + pts count: 1 = new pts: 31237. update pts: 31202 < new pts 31237, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1075529 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31236 + pts count: 1 = new pts: 31237, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 28115 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31121 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31122 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31123 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31129 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31135 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31142 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31143 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31144 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31145 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31146 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31147 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31148 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31150 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31151 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31152 < new pts 31238, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31153 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31188 < new pts 31238, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31237 + pts count: 1 = new pts: 31238. update pts: 31202 < new pts 31238, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1074713 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31237 + pts count: 1 = new pts: 31238, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 28115 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31121 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31122 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31123 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31129 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31135 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31142 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31143 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31144 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31145 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31146 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31147 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31148 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31150 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31151 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31152 < new pts 31239, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31153 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31188 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31202 < new pts 31239, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1076170 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 28115 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31121 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31122 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31123 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31129 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31135 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31142 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31143 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31144 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31145 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31146 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31147 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31148 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31150 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31151 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31152 < new pts 31239, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31153 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31188 < new pts 31239, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31238 + pts count: 1 = new pts: 31239. update pts: 31202 < new pts 31239, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1079780 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 28115 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31121 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31122 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31123 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31129 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31135 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31142 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31143 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31144 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31145 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31146 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31147 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31148 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31150 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31151 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31152 < new pts 31240, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31153 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31188 < new pts 31240, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31239 + pts count: 1 = new pts: 31240. update pts: 31202 < new pts 31240, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1083385 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31240 + pts count: 1 = new pts: 31241, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 28115 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31121 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31122 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31123 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31129 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31135 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31142 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31143 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31144 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31145 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31146 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31147 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31148 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31150 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31151 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31152 < new pts 31242, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31153 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31188 < new pts 31242, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31241 + pts count: 1 = new pts: 31242. update pts: 31202 < new pts 31242, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1084745 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31241 + pts count: 1 = new pts: 31242, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 28115 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31121 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31122 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31123 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31129 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31135 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31142 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31143 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31144 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31145 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31146 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31147 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31148 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31150 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31151 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31152 < new pts 31243, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31153 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31188 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31202 < new pts 31243, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1084291 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 28115 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31121 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31122 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31123 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31129 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31135 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31142 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31143 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31144 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31145 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31146 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31147 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31148 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31150 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31151 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31152 < new pts 31243, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31153 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31188 < new pts 31243, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31242 + pts count: 1 = new pts: 31243. update pts: 31202 < new pts 31243, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1085849 bytes -AuthKeyHandler, danogentili: Calling 638030... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 28115 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31121 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31122 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31123 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31129 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31135 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31142 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31143 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31144 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31145 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31146 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31147 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31148 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31150 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31151 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31152 < new pts 31244, channel id: -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31153 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31188 < new pts 31244, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31243 + pts count: 1 = new pts: 31244. update pts: 31202 < new pts 31244, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31244 + pts count: 1 = new pts: 31245, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1086876 bytes -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31308 + pts count: 1 = new pts: 31309. update pts: 28115 < new pts 31309, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 659047 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31309 + pts count: 1 = new pts: 31310. update pts: 28115 < new pts 31310, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -MTProto, danogentili: Switching from DC 2 to DC 2... -MTProto, danogentili: Done! Current DC is 2 -CallHandler, danogentili: Calling method (try number 1 for upload.getFile)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 668905 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31310 + pts count: 1 = new pts: 31311. update pts: 28115 < new pts 31311, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 678817 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31312 + pts count: 1 = new pts: 31313. update pts: 28115 < new pts 31313, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31312 + pts count: 1 = new pts: 31313, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 688802 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 31314, pts count: 1, new pts: 31315 < update pts: 31316, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31316 + pts count: 1 = new pts: 31317. update pts: 28115 < new pts 31317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31316 + pts count: 1 = new pts: 31317. update pts: 31313 < new pts 31317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31316 + pts count: 1 = new pts: 31317. update pts: 31315 < new pts 31317, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 706133 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31316 + pts count: 1 = new pts: 31317. update pts: 28115 < new pts 31317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31316 + pts count: 1 = new pts: 31317. update pts: 31313 < new pts 31317, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31316 + pts count: 1 = new pts: 31317. update pts: 31315 < new pts 31317, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 715432 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31318 + pts count: 1 = new pts: 31319. update pts: 28115 < new pts 31319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31318 + pts count: 1 = new pts: 31319. update pts: 31313 < new pts 31319, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31318 + pts count: 1 = new pts: 31319. update pts: 31315 < new pts 31319, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 724729 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31320 + pts count: 1 = new pts: 31321. update pts: 28115 < new pts 31321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31320 + pts count: 1 = new pts: 31321. update pts: 31313 < new pts 31321, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31320 + pts count: 1 = new pts: 31321. update pts: 31315 < new pts 31321, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 734024 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31322 + pts count: 1 = new pts: 31323, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31323 + pts count: 1 = new pts: 31324. update pts: 28115 < new pts 31324, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31323 + pts count: 1 = new pts: 31324. update pts: 31313 < new pts 31324, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31323 + pts count: 1 = new pts: 31324. update pts: 31315 < new pts 31324, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 743712 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31324 + pts count: 1 = new pts: 31325, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31325 + pts count: 1 = new pts: 31326, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31326 + pts count: 1 = new pts: 31327. update pts: 28115 < new pts 31327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31326 + pts count: 1 = new pts: 31327. update pts: 31313 < new pts 31327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31326 + pts count: 1 = new pts: 31327. update pts: 31315 < new pts 31327, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 754312 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31326 + pts count: 1 = new pts: 31327. update pts: 28115 < new pts 31327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31326 + pts count: 1 = new pts: 31327. update pts: 31313 < new pts 31327, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31326 + pts count: 1 = new pts: 31327. update pts: 31315 < new pts 31327, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 763614 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31328 + pts count: 1 = new pts: 31329. update pts: 28115 < new pts 31329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31328 + pts count: 1 = new pts: 31329. update pts: 31313 < new pts 31329, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31328 + pts count: 1 = new pts: 31329. update pts: 31315 < new pts 31329, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 772916 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 31330, pts count: 1, new pts: 31331 < update pts: 31332, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31332 + pts count: 1 = new pts: 31333. update pts: 28115 < new pts 31333, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31332 + pts count: 1 = new pts: 31333. update pts: 31313 < new pts 31333, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31332 + pts count: 1 = new pts: 31333. update pts: 31315 < new pts 31333, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 785971 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31332 + pts count: 1 = new pts: 31333. update pts: 28115 < new pts 31333, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31332 + pts count: 1 = new pts: 31333. update pts: 31313 < new pts 31333, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31332 + pts count: 1 = new pts: 31333. update pts: 31315 < new pts 31333, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31332 + pts count: 1 = new pts: 31333, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 795970 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31334 + pts count: 1 = new pts: 31335. update pts: 28115 < new pts 31335, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31334 + pts count: 1 = new pts: 31335. update pts: 31313 < new pts 31335, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31334 + pts count: 1 = new pts: 31335. update pts: 31315 < new pts 31335, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31334 + pts count: 1 = new pts: 31335. update pts: 31333 < new pts 31335, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31334 + pts count: 1 = new pts: 31335, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 805969 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 31336, pts count: 1, new pts: 31337 < update pts: 31339, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryInbox... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31339 + pts count: 1 = new pts: 31340. update pts: 28115 < new pts 31340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31339 + pts count: 1 = new pts: 31340. update pts: 31313 < new pts 31340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31339 + pts count: 1 = new pts: 31340. update pts: 31315 < new pts 31340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31339 + pts count: 1 = new pts: 31340. update pts: 31333 < new pts 31340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31339 + pts count: 1 = new pts: 31340. update pts: 31335 < new pts 31340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31339 + pts count: 1 = new pts: 31340. update pts: 31337 < new pts 31340, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 823906 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31339 + pts count: 1 = new pts: 31340. update pts: 28115 < new pts 31340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31339 + pts count: 1 = new pts: 31340. update pts: 31313 < new pts 31340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31339 + pts count: 1 = new pts: 31340. update pts: 31315 < new pts 31340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31339 + pts count: 1 = new pts: 31340. update pts: 31333 < new pts 31340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31339 + pts count: 1 = new pts: 31340. update pts: 31335 < new pts 31340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31339 + pts count: 1 = new pts: 31340. update pts: 31337 < new pts 31340, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31339 + pts count: 1 = new pts: 31340, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 833905 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 31341, pts count: 1, new pts: 31342 < update pts: 31343, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31343 + pts count: 1 = new pts: 31344. update pts: 28115 < new pts 31344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31343 + pts count: 1 = new pts: 31344. update pts: 31313 < new pts 31344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31343 + pts count: 1 = new pts: 31344. update pts: 31315 < new pts 31344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31343 + pts count: 1 = new pts: 31344. update pts: 31333 < new pts 31344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31343 + pts count: 1 = new pts: 31344. update pts: 31335 < new pts 31344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31343 + pts count: 1 = new pts: 31344. update pts: 31337 < new pts 31344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31343 + pts count: 1 = new pts: 31344. update pts: 31340 < new pts 31344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31343 + pts count: 1 = new pts: 31344. update pts: 31342 < new pts 31344, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 850765 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31343 + pts count: 1 = new pts: 31344. update pts: 28115 < new pts 31344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31343 + pts count: 1 = new pts: 31344. update pts: 31313 < new pts 31344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31343 + pts count: 1 = new pts: 31344. update pts: 31315 < new pts 31344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31343 + pts count: 1 = new pts: 31344. update pts: 31333 < new pts 31344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31343 + pts count: 1 = new pts: 31344. update pts: 31335 < new pts 31344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31343 + pts count: 1 = new pts: 31344. update pts: 31337 < new pts 31344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31343 + pts count: 1 = new pts: 31344. update pts: 31340 < new pts 31344, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31343 + pts count: 1 = new pts: 31344. update pts: 31342 < new pts 31344, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 860070 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 31345, pts count: 1, new pts: 31346 < update pts: 31347, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31347 + pts count: 1 = new pts: 31348. update pts: 28115 < new pts 31348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31347 + pts count: 1 = new pts: 31348. update pts: 31313 < new pts 31348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31347 + pts count: 1 = new pts: 31348. update pts: 31315 < new pts 31348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31347 + pts count: 1 = new pts: 31348. update pts: 31333 < new pts 31348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31347 + pts count: 1 = new pts: 31348. update pts: 31335 < new pts 31348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31347 + pts count: 1 = new pts: 31348. update pts: 31337 < new pts 31348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31347 + pts count: 1 = new pts: 31348. update pts: 31340 < new pts 31348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31347 + pts count: 1 = new pts: 31348. update pts: 31342 < new pts 31348, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31347 + pts count: 1 = new pts: 31348. update pts: 31346 < new pts 31348, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 873988 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 31347, pts count: 1, new pts: 31348 < update pts: 31349, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 28115 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31313 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31315 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31333 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31335 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31337 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31340 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31342 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31346 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31348 < new pts 31350, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 887323 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 28115 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31313 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31315 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31333 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31335 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31337 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31340 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31342 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31346 < new pts 31350, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31349 + pts count: 1 = new pts: 31350. update pts: 31348 < new pts 31350, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 892562 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31350 + pts count: 1 = new pts: 31351. update pts: 28115 < new pts 31351, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31350 + pts count: 1 = new pts: 31351. update pts: 31313 < new pts 31351, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31350 + pts count: 1 = new pts: 31351. update pts: 31315 < new pts 31351, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31350 + pts count: 1 = new pts: 31351. update pts: 31333 < new pts 31351, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31350 + pts count: 1 = new pts: 31351. update pts: 31335 < new pts 31351, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31350 + pts count: 1 = new pts: 31351. update pts: 31337 < new pts 31351, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31350 + pts count: 1 = new pts: 31351. update pts: 31340 < new pts 31351, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31350 + pts count: 1 = new pts: 31351. update pts: 31342 < new pts 31351, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31350 + pts count: 1 = new pts: 31351. update pts: 31346 < new pts 31351, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31350 + pts count: 1 = new pts: 31351. update pts: 31348 < new pts 31351, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 901743 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 31351, pts count: 1, new pts: 31352 < update pts: 31353, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31353 + pts count: 1 = new pts: 31354. update pts: 28115 < new pts 31354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31353 + pts count: 1 = new pts: 31354. update pts: 31313 < new pts 31354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31353 + pts count: 1 = new pts: 31354. update pts: 31315 < new pts 31354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31353 + pts count: 1 = new pts: 31354. update pts: 31333 < new pts 31354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31353 + pts count: 1 = new pts: 31354. update pts: 31335 < new pts 31354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31353 + pts count: 1 = new pts: 31354. update pts: 31337 < new pts 31354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31353 + pts count: 1 = new pts: 31354. update pts: 31340 < new pts 31354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31353 + pts count: 1 = new pts: 31354. update pts: 31342 < new pts 31354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31353 + pts count: 1 = new pts: 31354. update pts: 31346 < new pts 31354, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31353 + pts count: 1 = new pts: 31354. update pts: 31348 < new pts 31354, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31353 + pts count: 1 = new pts: 31354, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31354 + pts count: 1 = new pts: 31355, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 917912 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31355 + pts count: 1 = new pts: 31356, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31356 + pts count: 1 = new pts: 31357. update pts: 28115 < new pts 31357, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31356 + pts count: 1 = new pts: 31357. update pts: 31313 < new pts 31357, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31356 + pts count: 1 = new pts: 31357. update pts: 31315 < new pts 31357, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31356 + pts count: 1 = new pts: 31357. update pts: 31333 < new pts 31357, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31356 + pts count: 1 = new pts: 31357. update pts: 31335 < new pts 31357, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31356 + pts count: 1 = new pts: 31357. update pts: 31337 < new pts 31357, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31356 + pts count: 1 = new pts: 31357. update pts: 31340 < new pts 31357, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31356 + pts count: 1 = new pts: 31357. update pts: 31342 < new pts 31357, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31356 + pts count: 1 = new pts: 31357. update pts: 31346 < new pts 31357, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31356 + pts count: 1 = new pts: 31357. update pts: 31348 < new pts 31357, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 925373 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31357 + pts count: 1 = new pts: 31358. update pts: 28115 < new pts 31358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31357 + pts count: 1 = new pts: 31358. update pts: 31313 < new pts 31358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31357 + pts count: 1 = new pts: 31358. update pts: 31315 < new pts 31358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31357 + pts count: 1 = new pts: 31358. update pts: 31333 < new pts 31358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31357 + pts count: 1 = new pts: 31358. update pts: 31335 < new pts 31358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31357 + pts count: 1 = new pts: 31358. update pts: 31337 < new pts 31358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31357 + pts count: 1 = new pts: 31358. update pts: 31340 < new pts 31358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31357 + pts count: 1 = new pts: 31358. update pts: 31342 < new pts 31358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31357 + pts count: 1 = new pts: 31358. update pts: 31346 < new pts 31358, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31357 + pts count: 1 = new pts: 31358. update pts: 31348 < new pts 31358, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 933563 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 31359, pts count: 1, new pts: 31360 < update pts: 31361, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 28115 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31313 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31315 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31333 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31335 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31337 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31340 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31342 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31346 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31348 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31360 < new pts 31362, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 945018 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 28115 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31313 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31315 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31333 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31335 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31337 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31340 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31342 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31346 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31348 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31361 + pts count: 1 = new pts: 31362. update pts: 31360 < new pts 31362, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31361 + pts count: 1 = new pts: 31362, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 953067 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31364 + pts count: 1 = new pts: 31365. update pts: 28115 < new pts 31365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31364 + pts count: 1 = new pts: 31365. update pts: 31313 < new pts 31365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31364 + pts count: 1 = new pts: 31365. update pts: 31315 < new pts 31365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31364 + pts count: 1 = new pts: 31365. update pts: 31333 < new pts 31365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31364 + pts count: 1 = new pts: 31365. update pts: 31335 < new pts 31365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31364 + pts count: 1 = new pts: 31365. update pts: 31337 < new pts 31365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31364 + pts count: 1 = new pts: 31365. update pts: 31340 < new pts 31365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31364 + pts count: 1 = new pts: 31365. update pts: 31342 < new pts 31365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31364 + pts count: 1 = new pts: 31365. update pts: 31346 < new pts 31365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31364 + pts count: 1 = new pts: 31365. update pts: 31348 < new pts 31365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31364 + pts count: 1 = new pts: 31365. update pts: 31360 < new pts 31365, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31364 + pts count: 1 = new pts: 31365. update pts: 31362 < new pts 31365, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 960362 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31366 + pts count: 1 = new pts: 31367. update pts: 28115 < new pts 31367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31366 + pts count: 1 = new pts: 31367. update pts: 31313 < new pts 31367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31366 + pts count: 1 = new pts: 31367. update pts: 31315 < new pts 31367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31366 + pts count: 1 = new pts: 31367. update pts: 31333 < new pts 31367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31366 + pts count: 1 = new pts: 31367. update pts: 31335 < new pts 31367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31366 + pts count: 1 = new pts: 31367. update pts: 31337 < new pts 31367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31366 + pts count: 1 = new pts: 31367. update pts: 31340 < new pts 31367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31366 + pts count: 1 = new pts: 31367. update pts: 31342 < new pts 31367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31366 + pts count: 1 = new pts: 31367. update pts: 31346 < new pts 31367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31366 + pts count: 1 = new pts: 31367. update pts: 31348 < new pts 31367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31366 + pts count: 1 = new pts: 31367. update pts: 31360 < new pts 31367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31366 + pts count: 1 = new pts: 31367. update pts: 31362 < new pts 31367, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31366 + pts count: 1 = new pts: 31367, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31367 + pts count: 1 = new pts: 31368, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 970396 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31368 + pts count: 1 = new pts: 31369. update pts: 28115 < new pts 31369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31368 + pts count: 1 = new pts: 31369. update pts: 31313 < new pts 31369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31368 + pts count: 1 = new pts: 31369. update pts: 31315 < new pts 31369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31368 + pts count: 1 = new pts: 31369. update pts: 31333 < new pts 31369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31368 + pts count: 1 = new pts: 31369. update pts: 31335 < new pts 31369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31368 + pts count: 1 = new pts: 31369. update pts: 31337 < new pts 31369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31368 + pts count: 1 = new pts: 31369. update pts: 31340 < new pts 31369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31368 + pts count: 1 = new pts: 31369. update pts: 31342 < new pts 31369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31368 + pts count: 1 = new pts: 31369. update pts: 31346 < new pts 31369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31368 + pts count: 1 = new pts: 31369. update pts: 31348 < new pts 31369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31368 + pts count: 1 = new pts: 31369. update pts: 31360 < new pts 31369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31368 + pts count: 1 = new pts: 31369. update pts: 31362 < new pts 31369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31368 + pts count: 1 = new pts: 31369. update pts: 31367 < new pts 31369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31368 + pts count: 1 = new pts: 31369. update pts: 31368 < new pts 31369, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31368 + pts count: 1 = new pts: 31369, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31369 + pts count: 1 = new pts: 31370, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 980376 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31370 + pts count: 1 = new pts: 31371. update pts: 28115 < new pts 31371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31370 + pts count: 1 = new pts: 31371. update pts: 31313 < new pts 31371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31370 + pts count: 1 = new pts: 31371. update pts: 31315 < new pts 31371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31370 + pts count: 1 = new pts: 31371. update pts: 31333 < new pts 31371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31370 + pts count: 1 = new pts: 31371. update pts: 31335 < new pts 31371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31370 + pts count: 1 = new pts: 31371. update pts: 31337 < new pts 31371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31370 + pts count: 1 = new pts: 31371. update pts: 31340 < new pts 31371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31370 + pts count: 1 = new pts: 31371. update pts: 31342 < new pts 31371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31370 + pts count: 1 = new pts: 31371. update pts: 31346 < new pts 31371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31370 + pts count: 1 = new pts: 31371. update pts: 31348 < new pts 31371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31370 + pts count: 1 = new pts: 31371. update pts: 31360 < new pts 31371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31370 + pts count: 1 = new pts: 31371. update pts: 31362 < new pts 31371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31370 + pts count: 1 = new pts: 31371. update pts: 31367 < new pts 31371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31370 + pts count: 1 = new pts: 31371. update pts: 31368 < new pts 31371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31370 + pts count: 1 = new pts: 31371. update pts: 31369 < new pts 31371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31370 + pts count: 1 = new pts: 31371. update pts: 31370 < new pts 31371, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31370 + pts count: 1 = new pts: 31371, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31371 + pts count: 1 = new pts: 31372, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 990350 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 28115 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31313 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31315 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31333 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31335 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31337 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31340 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31342 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31346 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31348 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31360 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31362 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31367 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31368 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31369 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31370 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31371 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31372 + pts count: 1 = new pts: 31373. update pts: 31372 < new pts 31373, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31372 + pts count: 1 = new pts: 31373, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1000941 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31374 + pts count: 1 = new pts: 31375, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 28115 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31313 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31315 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31333 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31335 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31337 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31340 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31342 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31346 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31348 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31360 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31362 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31367 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31368 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31369 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31370 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31371 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31372 < new pts 31376, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31375 + pts count: 1 = new pts: 31376. update pts: 31373 < new pts 31376, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1007719 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31375 + pts count: 1 = new pts: 31376, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31376 + pts count: 1 = new pts: 31377, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 28115 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31313 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31315 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31333 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31335 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31337 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31340 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31342 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31346 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31348 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31360 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31362 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31367 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31368 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31369 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31370 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31371 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31372 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31373 < new pts 31378, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1014395 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 28115 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31313 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31315 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31333 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31335 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31337 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31340 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31342 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31346 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31348 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31360 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31362 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31367 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31368 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31369 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31370 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31371 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31372 < new pts 31378, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31377 + pts count: 1 = new pts: 31378. update pts: 31373 < new pts 31378, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1017401 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 28115 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31313 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31315 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31333 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31335 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31337 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31340 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31342 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31346 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31348 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31360 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31362 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31367 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31368 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31369 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31370 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31371 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31372 < new pts 31380, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31379 + pts count: 1 = new pts: 31380. update pts: 31373 < new pts 31380, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1019062 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 28115 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31313 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31315 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31333 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31335 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31337 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31340 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31342 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31346 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31348 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31360 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31362 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31367 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31368 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31369 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31370 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31371 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31372 < new pts 31382, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31381 + pts count: 1 = new pts: 31382. update pts: 31373 < new pts 31382, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1020484 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 31383, pts count: 1, new pts: 31384 < update pts: 31385, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 28115 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31313 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31315 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31333 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31335 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31337 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31340 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31342 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31346 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31348 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31360 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31362 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31367 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31368 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31369 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31370 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31371 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31372 < new pts 31386, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31385 + pts count: 1 = new pts: 31386. update pts: 31373 < new pts 31386, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1024580 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 31385, pts count: 1, new pts: 31386 < update pts: 31387, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 28115 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31313 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31315 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31333 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31335 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31337 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31340 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31342 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31346 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31348 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31360 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31362 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31367 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31368 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31369 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31370 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31371 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31372 < new pts 31388, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31387 + pts count: 1 = new pts: 31388. update pts: 31373 < new pts 31388, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1023736 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 31387, pts count: 1, new pts: 31388 < update pts: 31389, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 28115 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31313 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31315 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31333 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31335 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31337 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31340 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31342 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31346 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31348 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31360 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31362 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31367 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31368 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31369 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31370 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31371 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31372 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31373 < new pts 31390, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1030734 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 28115 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31313 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31315 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31333 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31335 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31337 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31340 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31342 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31346 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31348 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31360 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31362 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31367 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31368 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31369 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31370 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31371 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31372 < new pts 31390, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31389 + pts count: 1 = new pts: 31390. update pts: 31373 < new pts 31390, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1033871 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 28115 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31313 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31315 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31333 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31335 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31337 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31340 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31342 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31346 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31348 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31360 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31362 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31367 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31368 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31369 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31370 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31371 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31372 < new pts 31393, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31392 + pts count: 1 = new pts: 31393. update pts: 31373 < new pts 31393, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1035414 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 28115 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31313 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31315 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31333 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31335 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31337 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31340 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31342 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31346 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31348 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31360 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31362 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31367 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31368 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31369 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31370 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31371 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31372 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31395 + pts count: 1 = new pts: 31396. update pts: 31373 < new pts 31396, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31395 + pts count: 1 = new pts: 31396, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1034162 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 28115 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31313 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31315 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31333 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31335 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31337 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31340 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31342 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31346 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31348 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31360 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31362 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31367 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31368 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31369 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31370 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31371 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31372 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31373 < new pts 31397, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31396 + pts count: 1 = new pts: 31397. update pts: 31396 < new pts 31397, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1038766 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 28115 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31313 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31315 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31333 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31335 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31337 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31340 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31342 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31346 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31348 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31360 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31362 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31367 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31368 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31369 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31370 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31371 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31372 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31373 < new pts 31399, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31398 + pts count: 1 = new pts: 31399. update pts: 31396 < new pts 31399, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31399 + pts count: 1 = new pts: 31400, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1040244 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 28115 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31313 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31315 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31333 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31335 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31337 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31340 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31342 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31346 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31348 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31360 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31362 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31367 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31368 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31369 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31370 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31371 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31372 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31373 < new pts 31401, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31400 + pts count: 1 = new pts: 31401. update pts: 31396 < new pts 31401, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31401 + pts count: 1 = new pts: 31402, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1039125 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31402 + pts count: 1 = new pts: 31403, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 28115 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31313 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31315 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31333 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31335 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31337 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31340 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31342 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31346 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31348 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31360 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31362 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31367 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31368 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31369 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31370 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31371 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31372 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31373 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31396 < new pts 31404, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1041891 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 28115 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31313 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31315 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31333 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31335 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31337 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31340 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31342 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31346 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31348 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31360 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31362 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31367 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31368 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31369 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31370 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31371 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31372 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31373 < new pts 31404, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31403 + pts count: 1 = new pts: 31404. update pts: 31396 < new pts 31404, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1046134 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31405 + pts count: 1 = new pts: 31406, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 28115 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31313 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31315 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31333 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31335 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31337 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31340 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31342 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31346 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31348 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31360 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31362 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31367 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31368 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31369 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31370 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31371 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31372 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31373 < new pts 31407, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31406 + pts count: 1 = new pts: 31407. update pts: 31396 < new pts 31407, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1047674 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31407 + pts count: 1 = new pts: 31408, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 28115 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31313 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31315 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31333 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31335 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31337 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31340 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31342 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31346 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31348 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31360 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31362 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31367 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31368 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31369 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31370 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31371 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31372 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31373 < new pts 31409, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31408 + pts count: 1 = new pts: 31409. update pts: 31396 < new pts 31409, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1045886 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 28115 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31313 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31315 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31333 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31335 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31337 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31340 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31342 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31346 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31348 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31360 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31362 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31367 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31368 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31369 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31370 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31371 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31372 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31373 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31410 + pts count: 1 = new pts: 31411. update pts: 31396 < new pts 31411, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31410 + pts count: 1 = new pts: 31411, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31411 + pts count: 1 = new pts: 31412, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1051292 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 28115 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31313 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31315 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31333 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31335 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31337 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31340 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31342 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31346 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31348 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31360 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31362 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31367 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31368 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31369 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31370 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31371 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31372 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31373 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31396 < new pts 31413, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31412 + pts count: 1 = new pts: 31413. update pts: 31411 < new pts 31413, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1050168 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 28115 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31313 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31315 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31333 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31335 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31337 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31340 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31342 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31346 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31348 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31360 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31362 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31367 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31368 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31369 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31370 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31371 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31372 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31373 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31396 < new pts 31414, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31413 + pts count: 1 = new pts: 31414. update pts: 31411 < new pts 31414, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1054421 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 31415, pts count: 1, new pts: 31416 < update pts: 31417, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 28115 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31313 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31315 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31333 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31335 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31337 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31340 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31342 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31346 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31348 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31360 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31362 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31367 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31368 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31369 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31370 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31371 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31372 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31373 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31396 < new pts 31418, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31417 + pts count: 1 = new pts: 31418. update pts: 31411 < new pts 31418, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1056253 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 31417, pts count: 1, new pts: 31418 < update pts: 31419, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 28115 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31313 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31315 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31333 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31335 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31337 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31340 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31342 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31346 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31348 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31360 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31362 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31367 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31368 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31369 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31370 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31371 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31372 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31373 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31396 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31411 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31418 < new pts 31420, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1058102 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 28115 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31313 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31315 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31333 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31335 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31337 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31340 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31342 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31346 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31348 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31360 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31362 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31367 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31368 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31369 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31370 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31371 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31372 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31373 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31396 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31411 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31419 + pts count: 1 = new pts: 31420. update pts: 31418 < new pts 31420, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31419 + pts count: 1 = new pts: 31420, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1060476 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 28115 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31313 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31315 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31333 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31335 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31337 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31340 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31342 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31346 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31348 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31360 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31362 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31367 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31368 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31369 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31370 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31371 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31372 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31373 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31396 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31411 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31418 < new pts 31422, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31421 + pts count: 1 = new pts: 31422. update pts: 31420 < new pts 31422, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1061410 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 28115 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31313 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31315 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31333 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31335 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31337 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31340 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31342 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31346 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31348 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31360 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31362 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31367 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31368 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31369 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31370 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31371 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31372 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31373 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31396 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31411 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31418 < new pts 31423, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31422 + pts count: 1 = new pts: 31423. update pts: 31420 < new pts 31423, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1065663 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 28115 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31313 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31315 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31333 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31335 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31337 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31340 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31342 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31346 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31348 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31360 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31362 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31367 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31368 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31369 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31370 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31371 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31372 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31373 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31396 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31411 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31418 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31420 < new pts 31425, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1061072 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 28115 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31313 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31315 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31333 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31335 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31337 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31340 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31342 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31346 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31348 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31360 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31362 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31367 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31368 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31369 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31370 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31371 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31372 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31373 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31396 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31411 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31418 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31424 + pts count: 1 = new pts: 31425. update pts: 31420 < new pts 31425, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31424 + pts count: 1 = new pts: 31425, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1068852 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 28115 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31313 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31315 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31333 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31335 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31337 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31340 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31342 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31346 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31348 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31360 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31362 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31367 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31368 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31369 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31370 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31371 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31372 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31373 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31396 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31411 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31418 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31420 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31425 < new pts 31428, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1067166 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 28115 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31313 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31315 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31333 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31335 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31337 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31340 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31342 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31346 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31348 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31360 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31362 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31367 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31368 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31369 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31370 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31371 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31372 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31373 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31396 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31411 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31418 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31420 < new pts 31428, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31427 + pts count: 1 = new pts: 31428. update pts: 31425 < new pts 31428, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 1073905 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 28115 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31313 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31315 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31333 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31335 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31337 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31340 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31342 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31346 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31348 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31360 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31362 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31367 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31368 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31369 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31370 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31371 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31372 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31373 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31396 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31411 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31418 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31420 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31425 < new pts 31433, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1076789 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 28115 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31313 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31315 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31333 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31335 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31337 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31340 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31342 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31346 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31348 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31360 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31362 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31367 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31368 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31369 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31370 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31371 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31372 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31373 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31396 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31411 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31418 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31420 < new pts 31433, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31432 + pts count: 1 = new pts: 31433. update pts: 31425 < new pts 31433, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1075693 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 28115 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31313 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31315 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31333 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31335 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31337 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31340 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31342 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31346 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31348 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31360 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31362 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31367 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31368 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31369 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31370 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31371 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31372 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31373 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31396 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31411 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31418 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31420 < new pts 31434, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31433 + pts count: 1 = new pts: 31434. update pts: 31425 < new pts 31434, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1081421 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 28115 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31313 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31315 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31333 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31335 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31337 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31340 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31342 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31346 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31348 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31360 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31362 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31367 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31368 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31369 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31370 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31371 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31372 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31373 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31396 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31411 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31418 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31420 < new pts 31435, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31434 + pts count: 1 = new pts: 31435. update pts: 31425 < new pts 31435, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1082622 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31435 + pts count: 1 = new pts: 31436, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 28115 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31313 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31315 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31333 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31335 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31337 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31340 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31342 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31346 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31348 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31360 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31362 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31367 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31368 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31369 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31370 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31371 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31372 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31373 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31396 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31411 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31418 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31420 < new pts 31437, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31436 + pts count: 1 = new pts: 31437. update pts: 31425 < new pts 31437, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1081257 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31436 + pts count: 1 = new pts: 31437, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 28115 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31313 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31315 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31333 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31335 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31337 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31340 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31342 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31346 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31348 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31360 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31362 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31367 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31368 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31369 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31370 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31371 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31372 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31373 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31396 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31411 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31418 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31420 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31425 < new pts 31438, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1082524 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 28115 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31313 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31315 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31333 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31335 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31337 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31340 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31342 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31346 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31348 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31360 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31362 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31367 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31368 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31369 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31370 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31371 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31372 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31373 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31396 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31411 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31418 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31420 < new pts 31438, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31437 + pts count: 1 = new pts: 31438. update pts: 31425 < new pts 31438, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1086168 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 28115 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31313 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31315 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31333 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31335 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31337 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31340 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31342 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31346 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31348 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31360 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31362 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31367 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31368 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31369 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31370 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31371 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31372 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31373 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31396 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31411 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31418 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31420 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31438 + pts count: 1 = new pts: 31439. update pts: 31425 < new pts 31439, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31438 + pts count: 1 = new pts: 31439, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1089610 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 28115 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31313 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31315 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31333 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31335 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31337 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31340 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31342 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31346 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31348 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31360 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31362 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31367 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31368 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31369 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31370 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31371 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31372 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31373 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31396 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31411 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31418 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31420 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31425 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31439 + pts count: 1 = new pts: 31440. update pts: 31439 < new pts 31440, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31439 + pts count: 1 = new pts: 31440, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1092191 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 31442, pts count: 1, new pts: 31443 < update pts: 31444, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 28115 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31313 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31315 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31333 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31335 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31337 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31340 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31342 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31346 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31348 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31360 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31362 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31367 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31368 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31369 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31370 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31371 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31372 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31373 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31396 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31411 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31418 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31420 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31425 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31439 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31440 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31443 < new pts 31445, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1099452 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 28115 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31313 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31315 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31333 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31335 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31337 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31340 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31342 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31346 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31348 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31360 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31362 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31367 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31368 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31369 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31370 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31371 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31372 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31373 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31396 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31411 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31418 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31420 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31425 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31439 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31440 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31444 + pts count: 1 = new pts: 31445. update pts: 31443 < new pts 31445, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31444 + pts count: 1 = new pts: 31445, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1102190 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31446 + pts count: 1 = new pts: 31447, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 28115 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31313 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31315 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31333 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31335 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31337 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31340 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31342 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31346 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31348 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31360 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31362 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31367 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31368 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31369 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31370 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31371 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31372 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31373 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31396 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31411 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31418 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31420 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31425 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31439 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31440 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31443 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31445 < new pts 31448, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1103095 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 28115 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31313 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31315 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31333 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31335 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31337 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31340 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31342 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31346 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31348 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31360 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31362 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31367 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31368 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31369 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31370 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31371 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31372 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31373 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31396 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31411 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31418 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31420 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31425 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31439 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31440 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31443 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31445 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1101575 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 28115 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31313 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31315 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31333 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31335 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31337 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31340 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31342 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31346 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31348 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31360 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31362 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31367 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31368 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31369 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31370 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31371 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31372 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31373 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31396 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31411 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31418 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31420 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31425 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31439 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31440 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31443 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31447 + pts count: 1 = new pts: 31448. update pts: 31445 < new pts 31448, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1105504 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 28115 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31313 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31315 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31333 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31335 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31337 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31340 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31342 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31346 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31348 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31360 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31362 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31367 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31368 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31369 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31370 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31371 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31372 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31373 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31396 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31411 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31418 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31420 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31425 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31439 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31440 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31443 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31445 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1101908 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updateShort. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 28115 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31313 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31315 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31333 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31335 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31337 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31340 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31342 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31346 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31348 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31360 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31362 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31367 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31368 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31369 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31370 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31371 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31372 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31373 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31396 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31411 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31418 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31420 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31425 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31439 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31440 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31443 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31451 + pts count: 1 = new pts: 31452. update pts: 31445 < new pts 31452, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1101672 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 28115 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31313 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31315 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31333 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31335 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31337 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31340 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31342 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31346 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31348 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31360 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31362 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31367 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31368 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31369 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31370 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31371 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31372 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31373 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31396 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31411 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31418 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31420 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31425 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31439 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31440 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31443 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31452 + pts count: 1 = new pts: 31453. update pts: 31445 < new pts 31453, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31452 + pts count: 1 = new pts: 31453, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1104953 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 28115 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31313 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31315 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31333 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31335 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31337 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31340 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31342 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31346 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31348 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31360 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31362 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31367 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31368 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31369 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31370 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31371 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31372 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31373 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31396 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31411 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31418 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31420 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31425 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31439 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31440 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31443 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31445 < new pts 31454, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31453 + pts count: 1 = new pts: 31454. update pts: 31453 < new pts 31454, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1106106 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 28115 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31313 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31315 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31333 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31335 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31337 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31340 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31342 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31346 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31348 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31360 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31362 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31367 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31368 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31369 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31370 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31371 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31372 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31373 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31396 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31411 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31418 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31420 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31425 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31439 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31440 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31443 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31445 < new pts 31455, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31454 + pts count: 1 = new pts: 31455. update pts: 31453 < new pts 31455, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1107291 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 28115 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31313 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31315 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31333 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31335 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31337 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31340 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31342 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31346 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31348 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31360 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31362 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31367 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31368 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31369 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31370 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31371 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31372 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31373 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31396 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31411 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31418 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31420 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31425 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31439 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31440 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31443 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31445 < new pts 31458, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31457 + pts count: 1 = new pts: 31458. update pts: 31453 < new pts 31458, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1108980 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 28115 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31313 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31315 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31333 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31335 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31337 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31340 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31342 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31346 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31348 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31360 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31362 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31367 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31368 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31369 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31370 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31371 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31372 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31373 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31396 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31411 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31418 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31420 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31425 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31439 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31440 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31443 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31445 < new pts 31460, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31459 + pts count: 1 = new pts: 31460. update pts: 31453 < new pts 31460, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1113177 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 31461, pts count: 1, new pts: 31462 < update pts: 31463, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 28115 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31313 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31315 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31333 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31335 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31337 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31340 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31342 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31346 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31348 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31360 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31362 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31367 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31368 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31369 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31370 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31371 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31372 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31373 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31396 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31411 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31418 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31420 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31425 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31439 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31440 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31443 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31445 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31453 < new pts 31464, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1113866 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 28115 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31313 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31315 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31333 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31335 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31337 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31340 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31342 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31346 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31348 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31360 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31362 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31367 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31368 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31369 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31370 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31371 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31372 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31373 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31396 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31411 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31418 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31420 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31425 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31439 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31440 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31443 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31445 < new pts 31464, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31463 + pts count: 1 = new pts: 31464. update pts: 31453 < new pts 31464, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 31463, pts count: 1, new pts: 31464 < update pts: 31465, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1117849 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 28115 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31313 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31315 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31333 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31335 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31337 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31340 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31342 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31346 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31348 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31360 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31362 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31367 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31368 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31369 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31370 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31371 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31372 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31373 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31396 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31411 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31418 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31420 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31425 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31439 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31440 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31443 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31445 < new pts 31466, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31465 + pts count: 1 = new pts: 31466. update pts: 31453 < new pts 31466, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1120601 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 28115 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31313 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31315 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31333 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31335 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31337 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31340 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31342 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31346 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31348 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31360 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31362 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31367 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31368 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31369 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31370 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31371 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31372 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31373 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31396 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31411 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31418 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31420 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31425 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31439 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31440 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31443 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31445 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31453 < new pts 31468, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1121822 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 28115 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31313 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31315 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31333 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31335 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31337 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31340 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31342 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31346 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31348 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31360 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31362 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31367 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31368 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31369 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31370 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31371 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31372 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31373 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31396 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31411 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31418 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31420 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31425 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31439 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31440 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31443 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31445 < new pts 31468, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31467 + pts count: 1 = new pts: 31468. update pts: 31453 < new pts 31468, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1124878 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 28115 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31313 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31315 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31333 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31335 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31337 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31340 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31342 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31346 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31348 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31360 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31362 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31367 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31368 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31369 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31370 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31371 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31372 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31373 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31396 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31411 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31418 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31420 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31425 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31439 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31440 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31443 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31445 < new pts 31470, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31469 + pts count: 1 = new pts: 31470. update pts: 31453 < new pts 31470, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 31469, pts count: 1, new pts: 31470 < update pts: 31473, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1125607 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31473 + pts count: 1 = new pts: 31474, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 28115 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31313 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31315 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31333 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31335 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31337 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31340 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31342 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31346 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31348 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31360 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31362 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31367 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31368 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31369 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31370 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31371 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31372 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31373 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31396 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31411 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31418 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31420 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31425 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31439 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31440 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31443 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31445 < new pts 31475, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31474 + pts count: 1 = new pts: 31475. update pts: 31453 < new pts 31475, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1124547 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31474 + pts count: 1 = new pts: 31475, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 28115 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31313 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31315 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31333 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31335 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31337 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31340 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31342 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31346 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31348 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31360 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31362 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31367 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31368 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31369 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31370 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31371 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31372 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31373 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31396 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31411 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31418 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31420 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31425 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31439 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31440 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31443 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31445 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31453 < new pts 31476, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1123148 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 28115 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31313 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31315 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31333 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31335 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31337 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31340 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31342 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31346 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31348 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31360 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31362 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31367 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31368 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31369 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31370 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31371 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31372 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31373 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31396 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31411 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31418 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31420 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31425 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31439 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31440 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31443 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31445 < new pts 31476, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31475 + pts count: 1 = new pts: 31476. update pts: 31453 < new pts 31476, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1127026 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 28115 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31313 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31315 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31333 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31335 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31337 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31340 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31342 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31346 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31348 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31360 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31362 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31367 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31368 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31369 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31370 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31371 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31372 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31373 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31396 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31411 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31418 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31420 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31425 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31439 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31440 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31443 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31445 < new pts 31477, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31476 + pts count: 1 = new pts: 31477. update pts: 31453 < new pts 31477, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1131350 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31477 + pts count: 1 = new pts: 31478, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 28115 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31313 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31315 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31333 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31335 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31337 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31340 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31342 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31346 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31348 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31360 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31362 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31367 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31368 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31369 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31370 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31371 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31372 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31373 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31396 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31411 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31418 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31420 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31425 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31439 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31440 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31443 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31445 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31453 < new pts 31479, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1130509 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 28115 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31313 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31315 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31333 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31335 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31337 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31340 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31342 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31346 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31348 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31360 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31362 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31367 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31368 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31369 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31370 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31371 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31372 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31373 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31396 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31411 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31418 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31420 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31425 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31439 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31440 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31443 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31445 < new pts 31479, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31478 + pts count: 1 = new pts: 31479. update pts: 31453 < new pts 31479, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1132121 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 28115 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31313 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31315 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31333 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31335 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31337 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31340 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31342 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31346 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31348 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31360 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31362 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31367 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31368 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31369 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31370 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31371 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31372 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31373 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31396 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31411 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31418 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31420 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31425 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31439 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31440 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31443 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31445 < new pts 31480, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31479 + pts count: 1 = new pts: 31480. update pts: 31453 < new pts 31480, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1133718 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 28115 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31313 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31315 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31333 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31335 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31337 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31340 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31342 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31346 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31348 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31360 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31362 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31367 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31368 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31369 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31370 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31371 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31372 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31373 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31396 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31411 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31418 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31420 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31425 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31439 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31440 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31443 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31445 < new pts 31481, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31480 + pts count: 1 = new pts: 31481. update pts: 31453 < new pts 31481, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1134866 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 28115 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31313 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31315 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31333 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31335 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31337 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31340 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31342 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31346 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31348 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31360 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31362 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31367 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31368 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31369 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31370 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31371 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31372 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31373 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31396 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31411 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31418 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31420 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31425 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31439 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31440 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31443 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31445 < new pts 31482, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31481 + pts count: 1 = new pts: 31482. update pts: 31453 < new pts 31482, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1140800 bytes -AuthKeyHandler, danogentili: Calling 267654... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 28115 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31313 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31315 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31333 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31335 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31337 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31340 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31342 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31346 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31348 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31360 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31362 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31367 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31368 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31369 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31370 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31371 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31372 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31373 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31396 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31411 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31418 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31420 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31425 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31439 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31440 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31443 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31445 < new pts 31483, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31482 + pts count: 1 = new pts: 31483. update pts: 31453 < new pts 31483, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1142325 bytes -CallHandler, danogentili: Calling method (try number 1 for messages.sendMessage)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31483 + pts count: 1 = new pts: 31484, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -Deserializing MadelineProto from calls.madeline... -MTProto, danogentili: Resetting session id and seq_no in DC 2... -MTProto, danogentili: Getting updates after deserialization... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received new_session_created. -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Loading .env... -Loading settings... -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31492 + pts count: 1 = new pts: 31493, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31493 + pts count: 1 = new pts: 31494. update pts: 28115 < new pts 31494, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 660675 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31493 + pts count: 1 = new pts: 31494. update pts: 28115 < new pts 31494, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 666555 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31493 + pts count: 1 = new pts: 31494. update pts: 28115 < new pts 31494, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 675547 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31494 + pts count: 1 = new pts: 31495. update pts: 28115 < new pts 31495, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 684883 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31496 + pts count: 1 = new pts: 31497. update pts: 28115 < new pts 31497, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 31496, pts count: 1, new pts: 31497 < update pts: 31498, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 702515 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31498 + pts count: 1 = new pts: 31499, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31499 + pts count: 1 = new pts: 31500, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31500 + pts count: 1 = new pts: 31501. update pts: 28115 < new pts 31501, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 715264 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31500 + pts count: 1 = new pts: 31501, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31501 + pts count: 1 = new pts: 31502, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31502 + pts count: 1 = new pts: 31503. update pts: 28115 < new pts 31503, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 728010 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31502 + pts count: 1 = new pts: 31503, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31503 + pts count: 1 = new pts: 31504. update pts: 28115 < new pts 31504, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 737737 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31504 + pts count: 1 = new pts: 31505, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31505 + pts count: 1 = new pts: 31506. update pts: 28115 < new pts 31506, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 748234 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31506 + pts count: 1 = new pts: 31507, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31507 + pts count: 1 = new pts: 31508. update pts: 28115 < new pts 31508, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 763595 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31508 + pts count: 1 = new pts: 31509. update pts: 28115 < new pts 31509, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 769481 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 31508, pts count: 1, new pts: 31509 < update pts: 31510, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31510 + pts count: 1 = new pts: 31511. update pts: 28115 < new pts 31511, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 786667 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31511 + pts count: 1 = new pts: 31512. update pts: 28115 < new pts 31512, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 794004 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31512 + pts count: 1 = new pts: 31513. update pts: 28115 < new pts 31513, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 799896 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31512 + pts count: 1 = new pts: 31513. update pts: 28115 < new pts 31513, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 805788 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31512 + pts count: 1 = new pts: 31513. update pts: 28115 < new pts 31513, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 818456 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 31517, pts count: 1, new pts: 31518 < update pts: 31520, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31520 + pts count: 1 = new pts: 31521. update pts: 28115 < new pts 31521, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 831426 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31521 + pts count: 1 = new pts: 31522. update pts: 28115 < new pts 31522, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 841873 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31523 + pts count: 1 = new pts: 31524. update pts: 28115 < new pts 31524, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 847763 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31523 + pts count: 1 = new pts: 31524. update pts: 28115 < new pts 31524, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 853655 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31523 + pts count: 1 = new pts: 31524. update pts: 28115 < new pts 31524, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 863002 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Pts hole. current pts: 31525, pts count: 1, new pts: 31526 < update pts: 31527, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31527 + pts count: 1 = new pts: 31528. update pts: 28115 < new pts 31528, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31527 + pts count: 1 = new pts: 31528. update pts: 31526 < new pts 31528, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 894035 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31528 + pts count: 1 = new pts: 31529, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31529 + pts count: 1 = new pts: 31530. update pts: 28115 < new pts 31530, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31529 + pts count: 1 = new pts: 31530. update pts: 31526 < new pts 31530, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31529 + pts count: 1 = new pts: 31530, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 901289 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31530 + pts count: 1 = new pts: 31531. update pts: 28115 < new pts 31531, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31530 + pts count: 1 = new pts: 31531. update pts: 31526 < new pts 31531, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31530 + pts count: 1 = new pts: 31531, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31531 + pts count: 1 = new pts: 31532, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 920849 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31534 + pts count: 1 = new pts: 31535, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31535 + pts count: 1 = new pts: 31536. update pts: 28115 < new pts 31536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31535 + pts count: 1 = new pts: 31536. update pts: 31526 < new pts 31536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31535 + pts count: 1 = new pts: 31536. update pts: 31531 < new pts 31536, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31535 + pts count: 1 = new pts: 31536. update pts: 31532 < new pts 31536, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 929790 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31537 + pts count: 1 = new pts: 31538. update pts: 28115 < new pts 31538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31537 + pts count: 1 = new pts: 31538. update pts: 31526 < new pts 31538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31537 + pts count: 1 = new pts: 31538. update pts: 31531 < new pts 31538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31537 + pts count: 1 = new pts: 31538. update pts: 31532 < new pts 31538, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 933615 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31537 + pts count: 1 = new pts: 31538. update pts: 28115 < new pts 31538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31537 + pts count: 1 = new pts: 31538. update pts: 31526 < new pts 31538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31537 + pts count: 1 = new pts: 31538. update pts: 31531 < new pts 31538, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31537 + pts count: 1 = new pts: 31538. update pts: 31532 < new pts 31538, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 943836 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31539 + pts count: 1 = new pts: 31540. update pts: 28115 < new pts 31540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31539 + pts count: 1 = new pts: 31540. update pts: 31526 < new pts 31540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31539 + pts count: 1 = new pts: 31540. update pts: 31531 < new pts 31540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31539 + pts count: 1 = new pts: 31540. update pts: 31532 < new pts 31540, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 947702 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31539 + pts count: 1 = new pts: 31540. update pts: 28115 < new pts 31540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31539 + pts count: 1 = new pts: 31540. update pts: 31526 < new pts 31540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31539 + pts count: 1 = new pts: 31540. update pts: 31531 < new pts 31540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31539 + pts count: 1 = new pts: 31540. update pts: 31532 < new pts 31540, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 951579 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31539 + pts count: 1 = new pts: 31540. update pts: 28115 < new pts 31540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31539 + pts count: 1 = new pts: 31540. update pts: 31526 < new pts 31540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31539 + pts count: 1 = new pts: 31540. update pts: 31531 < new pts 31540, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31539 + pts count: 1 = new pts: 31540. update pts: 31532 < new pts 31540, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 958570 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -ResponseHandler, danogentili: Getting state, handle later -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31540 + pts count: 1 = new pts: 31541. update pts: 28115 < new pts 31541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31540 + pts count: 1 = new pts: 31541. update pts: 31526 < new pts 31541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31540 + pts count: 1 = new pts: 31541. update pts: 31531 < new pts 31541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31540 + pts count: 1 = new pts: 31541. update pts: 31532 < new pts 31541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31540 + pts count: 1 = new pts: 31541. update pts: 31540 < new pts 31541, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Applying pts. current pts: 31540 + pts count: 1 = new pts: 31541, channel id: -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -Wrote 986115 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31546 + pts count: 1 = new pts: 31547. update pts: 28115 < new pts 31547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31546 + pts count: 1 = new pts: 31547. update pts: 31526 < new pts 31547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31546 + pts count: 1 = new pts: 31547. update pts: 31531 < new pts 31547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31546 + pts count: 1 = new pts: 31547. update pts: 31532 < new pts 31547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31546 + pts count: 1 = new pts: 31547. update pts: 31540 < new pts 31547, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31546 + pts count: 1 = new pts: 31547. update pts: 31541 < new pts 31547, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 31546, pts count: 1, new pts: 31547 < update pts: 31548, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Sync loading, not handling update -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Pts hole. current pts: 31546, pts count: 1, new pts: 31547 < update pts: 31550, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -ResponseHandler, danogentili: Received msgs_ack. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -Wrote 1003494 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31548 + pts count: 1 = new pts: 31549. update pts: 28115 < new pts 31549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31548 + pts count: 1 = new pts: 31549. update pts: 31526 < new pts 31549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31548 + pts count: 1 = new pts: 31549. update pts: 31531 < new pts 31549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31548 + pts count: 1 = new pts: 31549. update pts: 31532 < new pts 31549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31548 + pts count: 1 = new pts: 31549. update pts: 31540 < new pts 31549, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31548 + pts count: 1 = new pts: 31549. update pts: 31541 < new pts 31549, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.difference -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateMessageID... -UpdateHandler, danogentili: Saving an update of type updateMessageID... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Saving an update of type updateNewMessage... -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1011882 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received msg_container. -ResponseHandler, danogentili: Received updates. -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Applying pts. current pts: 31552 + pts count: 1 = new pts: 31553, channel id: -UpdateHandler, danogentili: Saving an update of type updateReadHistoryOutbox... -ResponseHandler, danogentili: Received msgs_ack. -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1016589 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1014730 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1015498 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1016264 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1014522 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1012649 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1012735 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1010236 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1008215 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1008979 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1006958 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1008224 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1006556 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1003790 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1004403 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1000073 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1000835 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 1001321 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 996747 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 996237 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 996998 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 997802 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 994367 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 997615 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 995386 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 993605 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 991861 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 992624 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 993385 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 988926 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 983531 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 981712 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 981914 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 980885 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 981214 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 978694 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 976164 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 973148 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 973907 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 969918 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 970679 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 971442 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 969695 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 965822 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 960819 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 958901 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 960027 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 960109 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 955511 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 954993 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 955486 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 956250 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 957013 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 957775 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 958539 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 959301 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 960065 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 960825 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 961587 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 962351 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 963111 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 963872 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 964634 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 965395 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 966156 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 966918 bytes -AuthKeyHandler, danogentili: Calling 252591... -CallHandler, danogentili: Calling method (try number 1 for messages.getDhConfig)... -ResponseHandler, danogentili: Received rpc_result. -AuthKeyHandler, danogentili: VERBOSE -AuthKeyHandler, danogentili: Generating a... -AuthKeyHandler, danogentili: Generating g_a... -AuthKeyHandler, danogentili: Executing g_a check (1/2)... -AuthKeyHandler, danogentili: Executing g_a check (2/2)... -CallHandler, danogentili: Calling method (try number 1 for phone.requestCall)... -ResponseHandler, danogentili: Received rpc_result. -ResponseHandler, danogentili: Parsing pending updates... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateUserStatus... -UpdateHandler, danogentili: Saving an update of type updateUserStatus... -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 28115 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31526 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateReadHistoryOutbox... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31531 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31532 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31540 < new pts 31554, channel id: -ResponseHandler, danogentili: Parsing updates received via the socket... -UpdateHandler, danogentili: Handling an update of type updateNewMessage... -UpdateHandler, danogentili: Duplicate update. current pts: 31553 + pts count: 1 = new pts: 31554. update pts: 31541 < new pts 31554, channel id: -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -CallHandler, danogentili: Calling method (try number 1 for updates.getDifference)... -ResponseHandler, danogentili: Received rpc_result. -UpdateHandler, danogentili: Got updates.differenceEmpty -Wrote 967679 bytes -CallHandler, danogentili: Calling method (try number 1 for messages.sendMessage)... -ResponseHandler, danogentili: Received rpc_result. diff --git a/calls.php b/calls.php index 1a4a7fd0..5ee414a6 100644 --- a/calls.php +++ b/calls.php @@ -68,4 +68,4 @@ for ($x = 0; $x < $argv[2]; $x++) { $MadelineProto->get_updates_difference(); echo 'Wrote '.\danog\MadelineProto\Serialization::serialize('session.madeline', $MadelineProto).' bytes'.PHP_EOL; } -$MadelineProto->messages->sendMessage(['peer' => $argv[1], 'message' => '[Powered by MadelineProto](https://github.com/danog/MadelineProto)', 'parse_mode' => 'markdown']); +$MadelineProto->messages->sendMessage(['peer' => $argv[1], 'message' => 'Powered by MadelineProto', 'parse_mode' => 'markdown']); diff --git a/src/danog/MadelineProto/API.php b/src/danog/MadelineProto/API.php index c114f9d8..e23b7b8e 100644 --- a/src/danog/MadelineProto/API.php +++ b/src/danog/MadelineProto/API.php @@ -22,11 +22,6 @@ class API extends APIFactory public function __construct($params = []) { - // Detect 64 bit - if (PHP_INT_SIZE < 8) { - throw new Exception('MadelineProto supports only 64 bit systems ATM'); - } - set_error_handler(['\danog\MadelineProto\Exception', 'ExceptionErrorHandler']); $this->API = new MTProto($params); @@ -41,18 +36,19 @@ class API extends APIFactory $this->API->v = $this->API->getV(); \danog\MadelineProto\Logger::log(['MadelineProto is ready!'], Logger::NOTICE); } - + /* public function __sleep() { //$this->API->reset_session(false); return ['API']; } + */ public function __wakeup() { set_error_handler(['\danog\MadelineProto\Exception', 'ExceptionErrorHandler']); - $this->APIFactory(); + //$this->APIFactory(); } public function __destruct() diff --git a/src/danog/MadelineProto/APIFactory.php b/src/danog/MadelineProto/APIFactory.php index 9e0906aa..f5c0c4f2 100644 --- a/src/danog/MadelineProto/APIFactory.php +++ b/src/danog/MadelineProto/APIFactory.php @@ -94,6 +94,6 @@ class APIFactory { $this->API->get_config(); - return method_exists($this->API, $this->namespace.$name) ? $this->API->{$this->namespace.$name}(...$arguments) : $this->API->method_call($this->namespace.$name, (isset($arguments[0]) && is_array($arguments[0])) ? $arguments[0] : [], (isset($arguments[1]) && is_array($arguments[1])) ? $arguments[1] : []); + return method_exists($this->API, $this->namespace.$name) ? $this->API->{$this->namespace.$name}(...$arguments) : $this->API->method_call($this->namespace.$name, (isset($arguments[0]) && is_array($arguments[0])) ? $arguments[0] : [], (isset($arguments[1]) && is_array($arguments[1])) ? $arguments[1] : ['datacenter' => $this->API->datacenter->curdc]); } } diff --git a/src/danog/MadelineProto/Connection.php b/src/danog/MadelineProto/Connection.php index 35b9311b..8eebd312 100644 --- a/src/danog/MadelineProto/Connection.php +++ b/src/danog/MadelineProto/Connection.php @@ -29,10 +29,8 @@ class Connection public $temp_auth_key; public $auth_key; public $session_id; - public $seq_no = 0; - public $authorized = false; - public $authorization = null; - public $login_temp_status = 'none'; + public $session_out_seq_no = 0; + public $session_in_seq_no = 0; public $incoming_messages = []; public $outgoing_messages = []; @@ -105,7 +103,9 @@ class Connection case 'tcp_full': case 'http': case 'https': - fclose($this->sock); + try { + fclose($this->sock); + } catch (\danog\MadelineProto\Exception $e) { ; } break; case 'udp': throw new Exception("Connection: This protocol wasn't implemented yet."); @@ -167,8 +167,8 @@ class Connection throw new Exception("Connection: couldn't connect to socket."); } $packet = stream_get_contents($this->sock, $length); - if ($packet === false) { - throw new NothingInTheSocketException('Nothing in the socket!'); + if ($packet === false || strlen($packet) === 0) { + throw new \danog\MadelineProto\NothingInTheSocketException('Nothing in the socket!'); } if (strlen($packet) != $length) { throw new \danog\MadelineProto\Exception("WARNING: Wrong length was read (should've read ".($length).', read '.strlen($packet).')!'); diff --git a/src/danog/MadelineProto/DataCenter.php b/src/danog/MadelineProto/DataCenter.php index 988bdf71..7c424a40 100644 --- a/src/danog/MadelineProto/DataCenter.php +++ b/src/danog/MadelineProto/DataCenter.php @@ -24,6 +24,9 @@ class DataCenter public $dclist = []; public $settings = []; + public function __sleep() { + return ['sockets', 'curdc', 'dclist', 'settings']; + } public function __construct(&$dclist, &$settings) { $this->dclist = &$dclist; @@ -44,38 +47,37 @@ class DataCenter } } - public function dc_connect($dc_number, $settings = []) + public function dc_connect($dc_number) { $this->curdc = $dc_number; if (isset($this->sockets[$dc_number])) { return false; } - - if ($settings === []) { - $settings = $this->settings[$dc_number]; - } - $test = $settings['test_mode'] ? 'test' : 'main'; - $ipv6 = $settings['ipv6'] ? 'ipv6' : 'ipv4'; + $test = $this->settings[$dc_number]['test_mode'] ? 'test' : 'main'; + $ipv6 = $this->settings[$dc_number]['ipv6'] ? 'ipv6' : 'ipv4'; $address = $this->dclist[$test][$ipv6][$dc_number]['ip_address']; - $address = $settings['ipv6'] ? '['.$address.']' : $address; + $address = $this->settings[$dc_number]['ipv6'] ? '['.$address.']' : $address; $port = $this->dclist[$test][$ipv6][$dc_number]['port']; - if ($settings['protocol'] === 'https') { + if ($this->settings[$dc_number]['protocol'] === 'https') { $subdomain = $this->dclist['ssl_subdomains'][$dc_number]; - $path = $settings['test_mode'] ? 'apiw_test1' : 'apiw1'; - $address = $settings['protocol'].'://'.$subdomain.'.web.telegram.org/'.$path; + $path = $this->settings[$dc_number]['test_mode'] ? 'apiw_test1' : 'apiw1'; + $address = $this->settings[$dc_number]['protocol'].'://'.$subdomain.'.web.telegram.org/'.$path; } - if ($settings['protocol'] === 'http') { - $address = $settings['protocol'].'://'.$address.'/api'; + if ($this->settings[$dc_number]['protocol'] === 'http') { + $address = $this->settings[$dc_number]['protocol'].'://'.$address.'/api'; $port = 80; } - \danog\MadelineProto\Logger::log(['Connecting to DC '.$dc_number.' ('.$test.' server, '.$ipv6.', '.$settings['protocol'].')...'], \danog\MadelineProto\Logger::VERBOSE); - - $this->sockets[$dc_number] = new Connection($address, $port, $settings['protocol'], $settings['timeout']); + \danog\MadelineProto\Logger::log(['Connecting to DC '.$dc_number.' ('.$test.' server, '.$ipv6.', '.$this->settings[$dc_number]['protocol'].')...'], \danog\MadelineProto\Logger::VERBOSE); + $this->sockets[$dc_number] = new Connection($address, $port, $this->settings[$dc_number]['protocol'], $this->settings[$dc_number]['timeout']); return true; } - + public function get_dcs() { + $test = $this->settings[2]['test_mode'] ? 'test' : 'main'; + $ipv6 = $this->settings[2]['ipv6'] ? 'ipv6' : 'ipv4'; + return array_keys($this->dclist[$test][$ipv6]); + } public function &__get($name) { return $this->sockets[$this->curdc]->{$name}; diff --git a/src/danog/MadelineProto/Exception.php b/src/danog/MadelineProto/Exception.php index 257951dc..ac41b6b6 100644 --- a/src/danog/MadelineProto/Exception.php +++ b/src/danog/MadelineProto/Exception.php @@ -14,6 +14,13 @@ namespace danog\MadelineProto; class Exception extends \Exception { + public function __construct($message = null, $code = 0, Exception $previous = null) { + parent::__construct($message, $code, $previous); + if (\danog\MadelineProto\Logger::$constructed && $this->file !== __FILE__) { + \danog\MadelineProto\Logger::log([$message.' in '.basename($this->file).':'.$this->line], \danog\MadelineProto\Logger::FATAL_ERROR); + } + + } /** * ExceptionErrorHandler. * diff --git a/src/danog/MadelineProto/Logger.php b/src/danog/MadelineProto/Logger.php index 0c24a649..54ef27c4 100644 --- a/src/danog/MadelineProto/Logger.php +++ b/src/danog/MadelineProto/Logger.php @@ -22,25 +22,14 @@ class Logger public static $constructed = false; public static $prefix = ''; public static $level = 3; - const ULTRA_VERBOSE = 'ULTRA_VERBOSE'; - const VERBOSE = 'VERBOSE'; - const NOTICE = 'NOTICE'; - const WARNING = 'WARNING'; - const ERROR = 'ERROR'; - const FATAL_ERROR = 'FATAL ERROR'; + const ULTRA_VERBOSE = 5; + const VERBOSE = 4; + const NOTICE = 3; + const WARNING = 2; + const ERROR = 1; + const FATAL_ERROR = 0; - public static function level2num($level) - { - switch ($level) { - case self::ULTRA_VERBOSE: return 5; - case self::VERBOSE: return 4; - case self::NOTICE: return 3; - case self::WARNING: return 2; - case self::ERROR: return 1; - case self::FATAL_ERROR: return 0; - default: return false; - } - } + /* * Constructor function @@ -59,23 +48,27 @@ class Logger self::$optional = &$optional; self::$constructed = true; self::$prefix = $prefix === '' ? '' : ', '.$prefix; - self::$level = self::level2num($level); + self::$level = $level; } public static function log($params, $level = self::NOTICE) { + if (!self::$constructed) { throw new Exception("The constructor function wasn't called! Please call the constructor function before using this method."); } - $level = self::level2num($level); if ($level > self::$level) { return false; } + $prefix = self::$prefix; + if (class_exists('\Thread') && is_object(\Thread::getCurrentThread())) { + $prefix .= ' (t)'; + } foreach (is_array($params) ? $params : [$params] as $param) { if (!is_string($param)) { $param = var_export($param, true); } - $param = str_pad(basename(debug_backtrace()[0]['file'], '.php').self::$prefix.': ', 16 + strlen(self::$prefix))."\t".$param; + $param = str_pad(basename(debug_backtrace()[0]['file'], '.php').$prefix.': ', 16 + strlen($prefix))."\t".$param; switch (self::$mode) { case 1: error_log($param); diff --git a/src/danog/MadelineProto/Lua.php b/src/danog/MadelineProto/Lua.php index 6d8770bc..c160a135 100644 --- a/src/danog/MadelineProto/Lua.php +++ b/src/danog/MadelineProto/Lua.php @@ -61,7 +61,7 @@ class Lua if ($params === 0) { return 0; } - $result = $this->MadelineProto->API->method_call($params['_'], $params); + $result = $this->MadelineProto->API->method_call($params['_'], $params, ['datacenter' => $this->MadelineProto->API->datacenter->curdc]); if (is_callable($cb)) { $cb($this->MadelineProto->mtproto_to_td($result), $cb_extra); } @@ -71,7 +71,7 @@ class Lua public function madeline_function($params, $cb = null, $cb_extra = null) { - $result = $this->MadelineProto->API->method_call($params['_'], $params); + $result = $this->MadelineProto->API->method_call($params['_'], $params, ['datacenter' => $this->MadelineProto->API->datacenter->curdc]); if (is_callable($cb)) { $cb($result, $cb_extra); } diff --git a/src/danog/MadelineProto/MTProto.php b/src/danog/MadelineProto/MTProto.php index caec6630..ba242c20 100644 --- a/src/danog/MadelineProto/MTProto.php +++ b/src/danog/MadelineProto/MTProto.php @@ -25,27 +25,37 @@ class MTProto use \danog\MadelineProto\MTProtoTools\MsgIdHandler; use \danog\MadelineProto\MTProtoTools\PeerHandler; use \danog\MadelineProto\MTProtoTools\ResponseHandler; - use \danog\MadelineProto\MTProtoTools\SaltHandler; + //use \danog\MadelineProto\MTProtoTools\SaltHandler; use \danog\MadelineProto\MTProtoTools\SeqNoHandler; use \danog\MadelineProto\MTProtoTools\UpdateHandler; use \danog\MadelineProto\MTProtoTools\Files; + use \danog\MadelineProto\SecretChats\AuthKeyHandler; + use \danog\MadelineProto\SecretChats\MessageHandler; use \danog\MadelineProto\TL\TL; - use \danog\MadelineProto\Conversion\BotAPI; - use \danog\MadelineProto\Conversion\BotAPIFiles; - use \danog\MadelineProto\Conversion\Extension; - use \danog\MadelineProto\Conversion\TD; + use \danog\MadelineProto\TL\Conversion\BotAPI; + use \danog\MadelineProto\TL\Conversion\BotAPIFiles; + use \danog\MadelineProto\TL\Conversion\Extension; + use \danog\MadelineProto\TL\Conversion\TD; use \danog\MadelineProto\Tools; public $settings = []; public $config = ['expires' => -1]; public $ipv6 = false; public $should_serialize = true; + public $authorization = null; + public $authorized = false; + public $login_temp_status = 'none'; + public $bigint = false; + public $run_workers = false; + public $threads = false; + public $readers = []; public function __construct($settings = []) { + $this->bigint = PHP_INT_SIZE < 8; // Parse settings $this->parse_settings($settings); - + // Connect to servers \danog\MadelineProto\Logger::log(['Istantiating DataCenter...'], Logger::ULTRA_VERBOSE); if (isset($this->datacenter)) { @@ -60,37 +70,90 @@ class MTProto // Istantiate TL class \danog\MadelineProto\Logger::log(['Translating tl schemas...'], Logger::ULTRA_VERBOSE); $this->construct_TL($this->settings['tl_schema']['src']); - /* - * *********************************************************************** - * Define some needed numbers for BigInteger - */ + /* + * *********************************************************************** + * Define some needed numbers for BigInteger + */ \danog\MadelineProto\Logger::log(['Executing dh_prime checks (0/3)...'], \danog\MadelineProto\Logger::ULTRA_VERBOSE); + + $this->zero = new \phpseclib\Math\BigInteger(0); $this->one = new \phpseclib\Math\BigInteger(1); - //$two = new \phpseclib\Math\BigInteger(2); + $this->three = new \phpseclib\Math\BigInteger(3); + $this->four = new \phpseclib\Math\BigInteger(4); $this->twoe1984 = new \phpseclib\Math\BigInteger('1751908409537131537220509645351687597690304110853111572994449976845956819751541616602568796259317428464425605223064365804210081422215355425149431390635151955247955156636234741221447435733643262808668929902091770092492911737768377135426590363166295684370498604708288556044687341394398676292971255828404734517580702346564613427770683056761383955397564338690628093211465848244049196353703022640400205739093118270803778352768276670202698397214556629204420309965547056893233608758387329699097930255380715679250799950923553703740673620901978370802540218870279314810722790539899334271514365444369275682816'); $this->twoe2047 = new \phpseclib\Math\BigInteger('16158503035655503650357438344334975980222051334857742016065172713762327569433945446598600705761456731844358980460949009747059779575245460547544076193224141560315438683650498045875098875194826053398028819192033784138396109321309878080919047169238085235290822926018152521443787945770532904303776199561965192760957166694834171210342487393282284747428088017663161029038902829665513096354230157075129296432088558362971801859230928678799175576150822952201848806616643615613562842355410104862578550863465661734839271290328348967522998634176499319107762583194718667771801067716614802322659239302476074096777926805529798115328'); $this->twoe2048 = new \phpseclib\Math\BigInteger('32317006071311007300714876688669951960444102669715484032130345427524655138867890893197201411522913463688717960921898019494119559150490921095088152386448283120630877367300996091750197750389652106796057638384067568276792218642619756161838094338476170470581645852036305042887575891541065808607552399123930385521914333389668342420684974786564569494856176035326322058077805659331026192708460314150258592864177116725943603718461857357598351152301645904403697613233287231227125684710820209725157101726931323469678542580656697935045997268352998638215525166389437335543602135433229604645318478604952148193555853611059596230656'); - $this->switch_dc(2, true); - $this->get_config(); - } + $this->connect_to_all_dcs(); + $this->datacenter->curdc = 2; + $nearest_dc = $this->method_call('help.getNearestDc', [], ['datacenter' => $this->datacenter->curdc]); + \danog\MadelineProto\Logger::log(["We're in ".$nearest_dc['country'].', current dc is '.$nearest_dc['this_dc'].', nearest dc is '.$nearest_dc['nearest_dc'].'.'], Logger::NOTICE); + + if ($nearest_dc['nearest_dc'] != $nearest_dc['this_dc']) { + $this->datacenter->curdc = $nearest_dc['nearest_dc']; + $this->settings['connection_settings']['default_dc'] = $nearest_dc['nearest_dc']; + $this->should_serialize = true; + } + + $this->get_config([], ['datacenter' => $this->datacenter->curdc]); + $this->v = $this->getV(); + $this->should_serialize = true; + } + public function setup_threads() { + if ($this->threads = $this->run_workers = class_exists('\Pool') && php_sapi_name() == "cli" && $this->settings['threading']['allow_threading']) { + \danog\MadelineProto\Logger::log(['THREADING IS ENABLED'], \danog\MadelineProto\Logger::NOTICE); + $this->start_threads(); + } + + } + public function start_threads() { + if ($this->threads) { + $dcs = $this->datacenter->get_dcs(); + if (!isset($this->reader_pool)) $this->reader_pool = new \Pool(count($dcs)); + foreach ($dcs as $dc) { + if (!isset($this->readers[$dc])) { + $this->readers [$dc] = new \danog\MadelineProto\Threads\SocketReader($this, $dc); + } + if (!$this->readers[$dc]->isRunning()) { + $this->readers[$dc]->garbage = false; + $this->reader_pool->submit($this->readers[$dc]); + Logger::log(['Socket reader on DC '.$dc.': RESTARTED'], Logger::WARNING); + } else { + Logger::log(['Socket reader on DC '.$dc.': WORKING'], Logger::NOTICE); + } + } + } + } + public function __sleep() { + $t = get_object_vars($this); + if (isset($t['reader_pool'])) unset($t['reader_pool']); + return array_keys($t); + } public function __wakeup() { + if (debug_backtrace()[0]['file'] === __DIR__.'/Threads/SocketReader.php' || (debug_backtrace()[0]['file'] === __FILE__ && debug_backtrace()[0]['line'] === 117)) return; + $this->bigint = PHP_INT_SIZE < 8; $this->setup_logger(); if (!isset($this->v) || $this->v !== $this->getV()) { \danog\MadelineProto\Logger::log(['Serialization is out of date, reconstructing object!'], Logger::WARNING); $this->__construct($this->settings); - $this->v = $this->getV(); } + $this->setup_threads(); $this->datacenter->__construct($this->settings['connection'], $this->settings['connection_settings']); $this->reset_session(); - if ($this->datacenter->authorized && $this->settings['updates']['handle_updates']) { + if ($this->authorized && $this->settings['updates']['handle_updates']) { \danog\MadelineProto\Logger::log(['Getting updates after deserialization...'], Logger::NOTICE); $this->get_updates_difference(); } } - + public function __destruct() { + if (isset($this->reader_pool)) { + $this->run_workers = false; + \danog\MadelineProto\Logger::log(['Shutting down reader pool...'], Logger::NOTICE); + $this->reader_pool->shutdown(); + } + } public function parse_settings($settings) { // Detect ipv6 @@ -100,11 +163,11 @@ class MTProto 'timeout' => 1, ], ]); - - $google = file_get_contents('https://ipv6.google.com', false, $ctx); + $google = file_get_contents('http://ipv6.test-ipv6.com/', false, $ctx); } catch (Exception $e) { } $this->ipv6 = strlen($google) > 0; + // Detect device model try { $device_model = php_uname('s'); @@ -182,7 +245,7 @@ Slv8kg9qv1m6XHVQY3PnEw+QQtqSIXklHwIDAQAB 'protocol' => 'tcp_full', // can be tcp_full, tcp_abridged, tcp_intermediate, http, https, udp (unsupported) 'test_mode' => false, // decides whether to connect to the main telegram servers or to the testing servers (deep telegram) 'ipv6' => $this->ipv6, // decides whether to use ipv6, ipv6 attribute of API attribute of API class contains autodetected boolean - 'timeout' => 3, // timeout for sockets + 'timeout' => 2, // timeout for sockets ], ], 'app_info' => [ // obtained in https://my.telegram.org @@ -190,8 +253,8 @@ Slv8kg9qv1m6XHVQY3PnEw+QQtqSIXklHwIDAQAB 'api_hash' => '4251a2777e179232705e2462706f4143', 'device_model' => $device_model, 'system_version' => $system_version, -// 'app_version' => 'Unicorn', // 🌚 - 'app_version' => $this->getV(), + 'app_version' => 'Unicorn', // 🌚 +// 'app_version' => $this->getV(), 'lang_code' => 'en', ], 'tl_schema' => [ // TL scheme files @@ -236,6 +299,13 @@ Slv8kg9qv1m6XHVQY3PnEw+QQtqSIXklHwIDAQAB 'secret_chats' => [ 'accept_chats' => true, // Should I accept secret chats? Can be true, false or on array of user ids from which to accept chats ], + 'calls' => [ + 'accept_calls' => true, // Should I accept calls? Can be true, false or on array of user ids from which to accept calls + ], + 'threading' => [ + 'allow_threading' => false, // Should I use threading, if it is enabled? + 'handler_workers' => 10 // How many workers should every message handler pool of each socket reader have + ], 'pwr' => ['pwr' => false, 'db_token' => false, 'strict' => false], ]; $settings = array_replace_recursive($default_settings, $settings); @@ -247,15 +317,26 @@ Slv8kg9qv1m6XHVQY3PnEw+QQtqSIXklHwIDAQAB } unset($settings['connection_settings']['all']); } + switch ($settings['logger']['logger_level']) { + case 'ULTRA_VERBOSE': $settings['logger']['logger_level'] = 5; break; + case 'VERBOSE': $settings['logger']['logger_level'] = 4; break; + case 'NOTICE': $settings['logger']['logger_level'] = 3; break; + case 'WARNING': $settings['logger']['logger_level'] = 2; break; + case 'ERROR': $settings['logger']['logger_level'] = 1; break; + case 'FATAL ERROR': $settings['logger']['logger_level'] = 0; break; + } + $this->settings = $settings; // Setup logger $this->setup_logger(); + $this->should_serialize = true; } + public function setup_logger() { - \danog\MadelineProto\Logger::constructor($this->settings['logger']['logger'], $this->settings['logger']['logger_param'], isset($this->datacenter->authorization['user']) ? (isset($this->datacenter->authorization['user']['username']) ? $this->datacenter->authorization['user']['username'] : $this->datacenter->authorization['user']['id']) : '', isset($this->settings['logger']['logger_level']) ? $this->settings['logger']['logger_level'] : Logger::VERBOSE); + \danog\MadelineProto\Logger::constructor($this->settings['logger']['logger'], $this->settings['logger']['logger_param'], isset($this->authorization['user']) ? (isset($this->authorization['user']['username']) ? $this->authorization['user']['username'] : $this->authorization['user']['id']) : '', isset($this->settings['logger']['logger_level']) ? $this->settings['logger']['logger_level'] : Logger::VERBOSE); } public function reset_session($de = true) @@ -264,67 +345,66 @@ Slv8kg9qv1m6XHVQY3PnEw+QQtqSIXklHwIDAQAB if ($de) { \danog\MadelineProto\Logger::log(['Resetting session id and seq_no in DC '.$id.'...'], Logger::VERBOSE); $socket->session_id = $this->random(8); - $socket->seq_no = 0; + $socket->session_in_seq_no = 0; + $socket->session_out_seq_no = 0; } $socket->incoming_messages = []; $socket->outgoing_messages = []; $socket->new_outgoing = []; $socket->new_incoming = []; + $this->should_serialize = true; } } - // Switches to a new datacenter and if necessary creates authorization keys, binds them and writes client info - public function switch_dc($new_dc, $allow_nearest_dc_switch = false) + // Connects to all datacenters and if necessary creates authorization keys, binds them and writes client info + public function connect_to_all_dcs() { - $old_dc = $this->datacenter->curdc; - \danog\MadelineProto\Logger::log(['Switching from DC '.$old_dc.' to DC '.$new_dc.'...'], Logger::NOTICE); - if (!isset($this->datacenter->sockets[$new_dc])) { - $this->datacenter->dc_connect($new_dc); - $this->init_authorization(); - $this->get_config($this->write_client_info('help.getConfig')); - $this->get_nearest_dc($allow_nearest_dc_switch); + foreach ($old = $this->datacenter->get_dcs() as $new_dc) { + if (!isset($this->datacenter->sockets[$new_dc])) $this->datacenter->dc_connect($new_dc); } - $this->datacenter->curdc = $new_dc; - if ( - (isset($this->datacenter->sockets[$old_dc]->authorized) && $this->datacenter->sockets[$old_dc]->authorized) && - !(isset($this->datacenter->sockets[$new_dc]->authorized) && $this->datacenter->sockets[$new_dc]->authorized && $this->datacenter->sockets[$new_dc]->authorization['user']['id'] === $this->datacenter->sockets[$old_dc]->authorization['user']['id']) - ) { - \danog\MadelineProto\Logger::log(['Copying authorization...'], Logger::VERBOSE); - $this->should_serialize = true; - $this->datacenter->curdc = $old_dc; - $exported_authorization = $this->method_call('auth.exportAuthorization', ['dc_id' => $new_dc]); - $this->datacenter->curdc = $new_dc; - if (isset($this->datacenter->sockets[$new_dc]->authorized) && $this->datacenter->sockets[$new_dc]->authorized && $this->datacenter->sockets[$new_dc]->authorization['user']['id'] !== $this->datacenter->sockets[$old_dc]->authorization['user']['id']) { - $this->method_call('auth.logOut'); - } - $this->datacenter->authorization = $this->method_call('auth.importAuthorization', $exported_authorization); - $this->datacenter->authorized = true; - } - \danog\MadelineProto\Logger::log(['Done! Current DC is '.$this->datacenter->curdc], Logger::NOTICE); + $this->setup_threads(); + $this->init_authorization(); + if ($old !== $this->datacenter->get_dcs()) $this->connect_to_all_dcs(); } // Creates authorization keys public function init_authorization() { - if ($this->datacenter->session_id === null) { - $this->datacenter->session_id = $this->random(8); - } - if ($this->datacenter->temp_auth_key === null || $this->datacenter->auth_key === null) { - if ($this->datacenter->auth_key === null) { - \danog\MadelineProto\Logger::log(['Generating permanent authorization key...'], Logger::NOTICE); - $this->datacenter->auth_key = $this->create_auth_key(-1); + foreach ($this->datacenter->sockets as $id => &$socket) { + if ($socket->session_id === null) { + $socket->session_id = $this->random(8); + $socket->session_in_seq_no = 0; + $socket->session_out_seq_no = 0; $this->should_serialize = true; } - \danog\MadelineProto\Logger::log(['Generating temporary authorization key...'], Logger::NOTICE); - $this->datacenter->temp_auth_key = $this->create_auth_key($this->settings['authorization']['default_temp_auth_key_expires_in']); - $this->bind_temp_auth_key($this->settings['authorization']['default_temp_auth_key_expires_in']); - if (in_array($this->datacenter->protocol, ['http', 'https'])) { - $this->method_call('http_wait', ['max_wait' => 0, 'wait_after' => 0, 'max_delay' => 0]); + if ($socket->temp_auth_key === null || $socket->auth_key === null) { + if ($socket->auth_key === null) { + \danog\MadelineProto\Logger::log(['Generating permanent authorization key for DC '.$id.'...'], Logger::NOTICE); + $socket->auth_key = $this->create_auth_key(-1, $id); + } + \danog\MadelineProto\Logger::log(['Generating temporary authorization key for DC '.$id.'...'], Logger::NOTICE); + $socket->temp_auth_key = $this->create_auth_key($this->settings['authorization']['default_temp_auth_key_expires_in'], $id); + $this->bind_temp_auth_key($this->settings['authorization']['default_temp_auth_key_expires_in'], $id); + $this->get_config($this->write_client_info('help.getConfig', [], ['datacenter' => $id])); + if (in_array($socket->protocol, ['http', 'https'])) { + $this->method_call('http_wait', ['max_wait' => 0, 'wait_after' => 0, 'max_delay' => 0], ['datacenter' => $id]); + } + $this->should_serialize = true; } } } + public function sync_authorization($authorized_dc) { + foreach ($this->datacenter->sockets as $new_dc => &$socket) { + if ($new_dc === $authorized_dc) continue; + \danog\MadelineProto\Logger::log(['Copying authorization from dc '.$authorized_dc.' to dc '.$new_dc.'...'], Logger::VERBOSE); + $this->should_serialize = true; + $exported_authorization = $this->method_call('auth.exportAuthorization', ['dc_id' => $new_dc], ['datacenter' => $authorized_dc]); + $this->method_call('auth.logOut', [], ['datacenter' => $new_dc]); + $this->method_call('auth.importAuthorization', $exported_authorization, ['datacenter' => $new_dc]); + } + } - public function write_client_info($method, $arguments = []) + public function write_client_info($method, $arguments = [], $options = []) { \danog\MadelineProto\Logger::log(['Writing client info (also executing '.$method.')...'], Logger::NOTICE); @@ -338,28 +418,17 @@ Slv8kg9qv1m6XHVQY3PnEw+QQtqSIXklHwIDAQAB ['query' => $this->serialize_method($method, $arguments)] ) ), - ] + ], + $options ); } - public function get_nearest_dc($allow_switch) - { - $nearest_dc = $this->method_call('help.getNearestDc'); - \danog\MadelineProto\Logger::log(["We're in ".$nearest_dc['country'].', current dc is '.$nearest_dc['this_dc'].', nearest dc is '.$nearest_dc['nearest_dc'].'.'], Logger::NOTICE); - - if ($nearest_dc['nearest_dc'] != $nearest_dc['this_dc'] && $allow_switch) { - $this->switch_dc($nearest_dc['nearest_dc']); - $this->settings['connection_settings']['default_dc'] = $nearest_dc['nearest_dc']; - $this->should_serialize = true; - } - } - - public function get_config($config = []) + public function get_config($config = [], $options = []) { if ($this->config['expires'] > time()) { return; } - $this->config = empty($config) ? $this->method_call('help.getConfig') : $config; + $this->config = empty($config) ? $this->method_call('help.getConfig', $config, $options) : $config; $this->should_serialize = true; $this->parse_config(); } @@ -380,15 +449,16 @@ Slv8kg9qv1m6XHVQY3PnEw+QQtqSIXklHwIDAQAB $test .= (isset($this->settings['connection'][$test][$ipv6][$id]) && $this->settings['connection'][$test][$ipv6][$id]['ip_address'] != $dc['ip_address']) ? '_bk' : ''; $this->settings['connection'][$test][$ipv6][$id] = $dc; } + $this->should_serialize = true; } public function getV() { - return 2; + return 4; } public function get_self() { - return $this->datacenter->authorization['user']; + return $this->authorization['user']; } } diff --git a/src/danog/MadelineProto/MTProtoTools/AckHandler.php b/src/danog/MadelineProto/MTProtoTools/AckHandler.php index 8e93e0ed..d870ea63 100644 --- a/src/danog/MadelineProto/MTProtoTools/AckHandler.php +++ b/src/danog/MadelineProto/MTProtoTools/AckHandler.php @@ -17,31 +17,32 @@ namespace danog\MadelineProto\MTProtoTools; */ trait AckHandler { - public function ack_outgoing_message_id($message_id) + public function ack_outgoing_message_id($message_id, $datacenter) { // The server acknowledges that it received my message - if (!isset($this->datacenter->outgoing_messages[$message_id])) { + if (!isset($this->datacenter->sockets[$datacenter]->outgoing_messages[$message_id])) { \danog\MadelineProto\Logger::log(["WARNING: Couldn't find message id ".$message_id.' in the array of outgoing messages. Maybe try to increase its size?'], \danog\MadelineProto\Logger::WARNING); - +var_dump($message_id); +var_dump(debug_backtrace()[0]['file'], debug_backtrace()[0]['line']); return false; } - return $this->datacenter->outgoing_messages[$message_id]['ack'] = true; + return $this->datacenter->sockets[$datacenter]->outgoing_messages[$message_id]['ack'] = true; } - public function ack_incoming_message_id($message_id) + public function ack_incoming_message_id($message_id, $datacenter) { // I let the server know that I received its message - if (!isset($this->datacenter->incoming_messages[$message_id])) { + if (!isset($this->datacenter->sockets[$datacenter]->incoming_messages[$message_id])) { \danog\MadelineProto\Logger::log(["WARNING: Couldn't find message id ".$message_id.' in the array of incomgoing messages. Maybe try to increase its size?'], \danog\MadelineProto\Logger::WARNING); //throw new \danog\MadelineProto\Exception("Couldn't find message id ".$message_id.' in the array of incoming message ids. Maybe try to increase its size?'); } - if ($this->datacenter->temp_auth_key['id'] === null || $this->datacenter->temp_auth_key['id'] === str_repeat(chr(0), 8) || (isset($this->datacenter->incoming_messages[$message_id]['ack']) && $this->datacenter->incoming_messages[$message_id]['ack'])) { + if ($this->datacenter->sockets[$datacenter]->temp_auth_key['id'] === null || $this->datacenter->sockets[$datacenter]->temp_auth_key['id'] === str_repeat(chr(0), 8) || (isset($this->datacenter->sockets[$datacenter]->incoming_messages[$message_id]['ack']) && $this->datacenter->sockets[$datacenter]->incoming_messages[$message_id]['ack'])) { return; } - $this->object_call('msgs_ack', ['msg_ids' => [$message_id]]); + $this->object_call('msgs_ack', ['msg_ids' => [$message_id]], ['datacenter' => $datacenter]); - return $this->datacenter->incoming_messages[$message_id]['ack'] = true; + return $this->datacenter->sockets[$datacenter]->incoming_messages[$message_id]['ack'] = true; } } diff --git a/src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php b/src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php index 52cef90a..ac106f79 100644 --- a/src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php +++ b/src/danog/MadelineProto/MTProtoTools/AuthKeyHandler.php @@ -22,7 +22,7 @@ trait AuthKeyHandler { public $dh_config = ['version' => 0]; - public function create_auth_key($expires_in = -1) + public function create_auth_key($expires_in, $datacenter) { for ($retry_id_total = 1; $retry_id_total <= $this->settings['max_tries']['authorization']; $retry_id_total++) { try { @@ -49,7 +49,8 @@ trait AuthKeyHandler $ResPQ = $this->method_call('req_pq', [ 'nonce' => $nonce, - ] + ], + ['datacenter' => $datacenter] ); /* @@ -67,16 +68,9 @@ trait AuthKeyHandler if (!isset($this->key->keydata['fp'])) { $this->key = new \danog\MadelineProto\RSA($this->settings['authorization']['rsa_key']); } - foreach ($ResPQ['server_public_key_fingerprints'] as $curfp) { - if ($this->key->keydata['fp'] === $curfp) { - $public_key_fingerprint = $curfp; - break; - } - } + if (in_array($this->key->keydata['fp'], $ResPQ['server_public_key_fingerprints'])) throw new \danog\MadelineProto\SecurityException("Couldn't find our key in the server_public_key_fingerprints vector."); - if (!isset($public_key_fingerprint)) { - throw new \danog\MadelineProto\SecurityException("Couldn't find our key in the server_public_key_fingerprints vector."); - } + $pq_bytes = $ResPQ['pq']; $server_nonce = $ResPQ['server_nonce']; @@ -85,14 +79,14 @@ trait AuthKeyHandler * *********************************************************************** * Compute p and q */ - $pq = \danog\PHP\Struct::unpack('>Q', $pq_bytes)[0]; - $p = \danog\PrimeModule::auto_single($pq); - $q = $pq / $p; - if ($p > $q) { + $pq = new \phpseclib\Math\BigInteger($pq_bytes, 256); + $p = new \phpseclib\Math\BigInteger(\danog\PrimeModule::auto_single($pq->__toString())); + $q = $pq->divide($p)[0]; + if ($p->compare($q) > 0) { list($p, $q) = [$q, $p]; } - if ($pq !== $p * $q) { + if (!$pq->equals($p->multiply($q))) { throw new \danog\MadelineProto\SecurityException("couldn't compute p and q."); } @@ -102,8 +96,8 @@ trait AuthKeyHandler * *********************************************************************** * Serialize object for req_DH_params */ - $p_bytes = \danog\PHP\Struct::pack('>I', $p); - $q_bytes = \danog\PHP\Struct::pack('>I', $q); + $p_bytes = $p->toBytes(); + $q_bytes = $q->toBytes(); $new_nonce = $this->random(32); @@ -154,9 +148,11 @@ trait AuthKeyHandler 'server_nonce' => $server_nonce, 'p' => $p_bytes, 'q' => $q_bytes, - 'public_key_fingerprint' => $public_key_fingerprint, + 'public_key_fingerprint' => $this->key->keydata['fp'], 'encrypted_data' => $encrypted_data, - ] + ], + ['datacenter' => $datacenter] + ); /* @@ -213,7 +209,7 @@ trait AuthKeyHandler * int $server_time * ] */ - $server_DH_inner_data = $this->deserialize($answer); + $server_DH_inner_data = $this->deserialize($answer, ['type' => '']); /* * *********************************************************************** @@ -241,9 +237,9 @@ trait AuthKeyHandler * Time delta */ $server_time = $server_DH_inner_data['server_time']; - $this->datacenter->time_delta = $server_time - time(); + $this->datacenter->sockets[$datacenter]->time_delta = $server_time - time(); - \danog\MadelineProto\Logger::log([sprintf('Server-client time delta = %.1f s', $this->datacenter->time_delta)], \danog\MadelineProto\Logger::VERBOSE); + \danog\MadelineProto\Logger::log([sprintf('Server-client time delta = %.1f s', $this->datacenter->sockets[$datacenter]->time_delta)], \danog\MadelineProto\Logger::VERBOSE); $this->check_p_g($dh_prime, $g); $this->check_G($g_a, $dh_prime); @@ -324,7 +320,9 @@ trait AuthKeyHandler 'nonce' => $nonce, 'server_nonce' => $server_nonce, 'encrypted_data' => $encrypted_data, - ] + ], + ['datacenter' => $datacenter] + ); /* @@ -368,7 +366,7 @@ trait AuthKeyHandler \danog\MadelineProto\Logger::log(['Diffie Hellman key exchange processed successfully!'], \danog\MadelineProto\Logger::VERBOSE); - $res_authorization['server_salt'] = \danog\PHP\Struct::unpack('getMessage().' Retrying (try number '.$retry_id_total.')...'], \danog\MadelineProto\Logger::WARNING); } finally { - $this->datacenter->new_outgoing = []; - $this->datacenter->new_incoming = []; + $this->datacenter->sockets[$datacenter]->new_outgoing = []; + $this->datacenter->sockets[$datacenter]->new_incoming = []; } } @@ -497,7 +495,7 @@ trait AuthKeyHandler public function get_dh_config() { $this->getting_state = true; - $dh_config = $this->method_call('messages.getDhConfig', ['version' => $this->dh_config['version'], 'random_length' => 0]); + $dh_config = $this->method_call('messages.getDhConfig', ['version' => $this->dh_config['version'], 'random_length' => 0], ['datacenter' => $this->datacenter->curdc]); $this->getting_state = false; if ($dh_config['_'] === 'messages.dhConfigNotModified') { \danog\MadelineProto\Logger::log(\danog\MadelineProto\Logger::VERBOSE, ['DH configuration not modified']); @@ -511,13 +509,11 @@ trait AuthKeyHandler return $this->dh_config = $dh_config; } - private $temp_requested_secret_chats = []; - private $secret_chats = []; - private $temp_requested_calls = []; private $calls = []; - public function accept_secret_chat($params) + + public function accept_call($params) { $dh_config = $this->get_dh_config(); \danog\MadelineProto\Logger::log(['Generating b...'], \danog\MadelineProto\Logger::VERBOSE); @@ -525,34 +521,15 @@ trait AuthKeyHandler $params['g_a'] = new \phpseclib\Math\BigInteger($params['g_a'], 256); $this->check_G($params['g_a'], $dh_config['p']); $key = ['auth_key' => str_pad($params['g_a']->powMod($b, $dh_config['p'])->toBytes(), 256, chr(0), \STR_PAD_LEFT)]; - $key['fingerprint'] = \danog\PHP\Struct::unpack('secret_chats[$params['id']] = ['key' => $key, 'admin' => false, 'user_id' => $params['admin_id'], 'InputEncryptedChat' => ['_' => 'inputEncryptedChat', 'chat_id' => $params['id'], 'access_hash' => $params['access_hash']], 'in_seq_no_x' => 1, 'out_seq_no_x' => 0, 'layer' => 8, 'ttl' => PHP_INT_MAX, 'ttr' => 100, 'updated' => time(), 'incoming' => [], 'outgoing' => [], 'created' => time(), 'rekeying' => [0]]; + $this->secret_chats[$params['id']] = ['key' => $key, 'admin' => false, 'user_id' => $params['admin_id'], 'InputPhoneCall' => ['id' => $params['id'], 'access_hash' => $params['access_hash'], '_' => 'inputPhoneCall'], 'in_seq_no_x' => 0, 'out_seq_no_x' => 1, 'layer' => 65, 'ttr' => 100, 'updated' => time(), 'incoming' => [], 'outgoing' => [], 'created' => time(), 'rekeying' => [0], 'protocol' => $params['protocol'], 'connection' => $params['connection'], 'alternative_connections' => $params['alternative_connections']]; + //$this->secret_chats[$params['id']] = ['key' => $key, 'admin' => false, 'user_id' => $params['admin_id'], 'InputEncryptedChat' => ['_' => 'inputEncryptedChat', 'chat_id' => $params['id'], 'access_hash' => $params['access_hash']], 'in_seq_no_x' => 1, 'out_seq_no_x' => 0, 'layer' => 8, 'ttl' => PHP_INT_MAX, 'ttr' => 100, 'updated' => time(), 'incoming' => [], 'outgoing' => [], 'created' => time(), 'rekeying' => [0]]; $g_b = $dh_config['g']->powMod($b, $dh_config['p']); $this->check_G($g_b, $dh_config['p']); - $this->notify_layer($params['id']); $this->handle_pending_updates(); } - - public function request_secret_chat($user) - { - $user = $this->get_info($user)['InputUser']; - \danog\MadelineProto\Logger::log(['Creating secret chat with '.$user['user_id'].'...'], \danog\MadelineProto\Logger::VERBOSE); - $dh_config = $this->get_dh_config(); - \danog\MadelineProto\Logger::log(['Generating a...'], \danog\MadelineProto\Logger::VERBOSE); - $a = new \phpseclib\Math\BigInteger($this->random(256), 256); - \danog\MadelineProto\Logger::log(['Generating g_a...'], \danog\MadelineProto\Logger::VERBOSE); - $g_a = $dh_config['g']->powMod($a, $dh_config['p']); - $this->check_G($g_a, $dh_config['p']); - $res = $this->method_call('messages.requestEncryption', ['user_id' => $user, 'g_a' => $g_a->toBytes()]); - $this->temp_requested_secret_chats[$res['id']] = $a; - $this->handle_pending_updates(); - $this->get_updates_difference(); - - return $res['id']; - } - public function request_call($user) { $user = $this->get_info($user)['InputUser']; @@ -563,8 +540,8 @@ trait AuthKeyHandler \danog\MadelineProto\Logger::log(['Generating g_a...'], \danog\MadelineProto\Logger::VERBOSE); $g_a = $dh_config['g']->powMod($a, $dh_config['p']); $this->check_G($g_a, $dh_config['p']); -// $res = $this->method_call('phone.requestCall', ['user_id' => $user, 'g_a' => $g_a->toBytes(), 'protocol' => ['_' => 'phoneCallProtocol', 'min_layer' => $this->settings['tl_schema']['layer'], 'max_layer' => $this->settings['tl_schema']['layer']]]); - $res = $this->method_call('phone.requestCall', ['user_id' => $user, 'g_a' => $g_a->toBytes(), 'protocol' => ['_' => 'phoneCallProtocol', 'min_layer' => 65, 'max_layer' => 65, 'udp_reflector' => true]]); +// $res = $this->method_call('phone.requestCall', ['user_id' => $user, 'g_a' => $g_a->toBytes(), 'protocol' => ['_' => 'phoneCallProtocol', 'min_layer' => $this->settings['tl_schema']['layer'], 'max_layer' => $this->settings['tl_schema']['layer']]], ['datacenter' => $this->datacenter->curdc]); + $res = $this->method_call('phone.requestCall', ['user_id' => $user, 'g_a' => $g_a->toBytes(), 'protocol' => ['_' => 'phoneCallProtocol', 'min_layer' => 65, 'max_layer' => 65, 'udp_reflector' => true]], ['datacenter' => $this->datacenter->curdc]); $this->temp_requested_calls[$res['phone_call']['id']] = $a; $this->handle_pending_updates(); $this->get_updates_difference(); @@ -572,9 +549,11 @@ trait AuthKeyHandler return $res['phone_call']['id']; } - public function complete_secret_chat($params) + + + public function complete_call($params) { - if ($this->secret_chat_status($params['id']) !== 1) { + if ($this->call_status($params['id']) !== 1) { \danog\MadelineProto\Logger::log(['Could not find and complete secret chat '.$params['id']]); return false; @@ -583,133 +562,24 @@ trait AuthKeyHandler $params['g_a_or_b'] = new \phpseclib\Math\BigInteger($params['g_a_or_b'], 256); $this->check_G($params['g_a_or_b'], $dh_config['p']); $key = ['auth_key' => str_pad($params['g_a_or_b']->powMod($this->temp_requested_secret_chats[$params['id']], $dh_config['p'])->toBytes(), 256, chr(0), \STR_PAD_LEFT)]; - unset($this->temp_requested_secret_chats[$params['id']]); - $key['fingerprint'] = \danog\PHP\Struct::unpack('temp_requested_calls[$params['id']]); + $key['fingerprint'] = substr(sha1($key['auth_key'], true), -8); if ($key['fingerprint'] !== $params['key_fingerprint']) { - $this->method_call('messages.discardEncryption', ['chat_id' => $params['id']]); throw new \danog\MadelineProto\SecurityException('Invalid key fingerprint!'); } $key['visualization_orig'] = substr(sha1($key['auth_key'], true), 16); $key['visualization_46'] = substr(hash('sha256', $key['auth_key'], true), 20); - $this->secret_chats[$params['id']] = ['key' => $key, 'admin' => true, 'user_id' => $params['participant_id'], 'InputEncryptedChat' => ['chat_id' => $params['id'], 'access_hash' => $params['access_hash'], '_' => 'inputEncryptedChat'], 'in_seq_no_x' => 0, 'out_seq_no_x' => 1, 'layer' => 8, 'ttl' => PHP_INT_MAX, 'ttr' => 100, 'updated' => time(), 'incoming' => [], 'outgoing' => [], 'created' => time(), 'rekeying' => [0]]; - $this->notify_layer($params['id']); + $this->secret_chats[$params['id']] = ['key' => $key, 'admin' => true, 'user_id' => $params['participant_id'], 'InputPhoneCall' => ['id' => $params['id'], 'access_hash' => $params['access_hash'], '_' => 'inputPhoneCall'], 'in_seq_no_x' => 0, 'out_seq_no_x' => 1, 'layer' => 65, 'ttr' => 100, 'updated' => time(), 'incoming' => [], 'outgoing' => [], 'created' => time(), 'rekeying' => [0], 'protocol' => $params['protocol'], 'connection' => $params['connection'], 'alternative_connections' => $params['alternative_connections']]; $this->handle_pending_updates(); } - public function notify_layer($chat) + + public function call_status($id) { - $this->method_call('messages.sendEncryptedService', ['peer' => $chat, 'message' => ['_' => 'decryptedMessageService', 'action' => ['_' => 'decryptedMessageActionNotifyLayer', 'layer' => $this->encrypted_layer]]]); - } - - private $temp_rekeyed_secret_chats = []; - - public function rekey($chat) - { - if ($this->secret_chats[$chat]['rekeying'][0] !== 0) { - return; - } - \danog\MadelineProto\Logger::log(['Rekeying secret chat '.$chat.'...'], \danog\MadelineProto\Logger::VERBOSE); - $dh_config = $this->get_dh_config(); - \danog\MadelineProto\Logger::log(['Generating a...'], \danog\MadelineProto\Logger::VERBOSE); - $a = new \phpseclib\Math\BigInteger($this->random(256), 256); - \danog\MadelineProto\Logger::log(['Generating g_a...'], \danog\MadelineProto\Logger::VERBOSE); - $g_a = $dh_config['g']->powMod($a, $dh_config['p']); - $this->check_G($g_a, $dh_config['p']); - $e = \danog\PHP\Struct::unpack('random(8))[0]; - $this->method_call('messages.sendEncryptedService', ['peer' => $chat, 'message' => ['_' => 'decryptedMessageService', 'action' => ['_' => 'decryptedMessageActionRequestKey', 'g_a' => $g_a->toBytes(), 'exchange_id' => $e]]]); - $this->temp_rekeyed_secret_chats[$e] = $a; - $this->secret_chats[$chat]['rekeying'] = [1, $e]; - $this->handle_pending_updates(); - $this->get_updates_difference(); - - return $e; - } - - public function accept_rekey($chat, $params) - { - if ($this->secret_chats[$chat]['rekeying'][0] !== 0) { - $my = $this->temp_rekeyed_secret_chats[$this->secret_chats[$chat]['rekeying'][1]]; - if ($my['exchange_id'] > $params['exchange_id']) { - return; - } - if ($my['exchange_id'] === $params['exchange_id']) { - $this->secret_chats[$chat]['rekeying'] = [0]; - $this->rekey($chat); - - return; - } - } - \danog\MadelineProto\Logger::log(['Accepting rekeying of secret chat '.$chat.'...'], \danog\MadelineProto\Logger::VERBOSE); - $dh_config = $this->get_dh_config(); - \danog\MadelineProto\Logger::log(['Generating b...'], \danog\MadelineProto\Logger::VERBOSE); - $b = new \phpseclib\Math\BigInteger($this->random(256), 256); - $params['g_a'] = new \phpseclib\Math\BigInteger($params['g_a'], 256); - $this->check_G($params['g_a'], $dh_config['p']); - $key = ['auth_key' => str_pad($params['g_a']->powMod($b, $dh_config['p'])->toBytes(), 256, chr(0), \STR_PAD_LEFT)]; - $key['fingerprint'] = \danog\PHP\Struct::unpack('secret_chats[$chat]['key']['visualization_orig']; - $key['visualization_46'] = substr(hash('sha256', $key['auth_key'], true), 20); - $this->temp_rekeyed_secret_chats[$params['exchange_id']] = $key; - $this->secret_chats[$chat]['rekeying'] = [2, $params['exchange_id']]; - $g_b = $dh_config['g']->powMod($b, $dh_config['p']); - $this->check_G($g_b, $dh_config['p']); - $this->method_call('messages.sendEncryptedService', ['peer' => $chat, 'message' => ['_' => 'decryptedMessageService', 'action' => ['_' => 'decryptedMessageActionAcceptKey', 'g_b' => $g_b->toBytes(), 'exchange_id' => $params['exchange_id'], 'key_fingerprint' => $key['fingerprint']]]]); - $this->handle_pending_updates(); - $this->get_updates_difference(); - } - - public function commit_rekey($chat, $params) - { - if ($this->secret_chats[$chat]['rekeying'][0] !== 1) { - return; - } - \danog\MadelineProto\Logger::log(['Committing rekeying of secret chat '.$chat.'...'], \danog\MadelineProto\Logger::VERBOSE); - $dh_config = $this->get_dh_config(); - $params['g_b'] = new \phpseclib\Math\BigInteger($params['g_b'], 256); - $this->check_G($params['g_b'], $dh_config['p']); - $key = ['auth_key' => str_pad($params['g_b']->powMod($this->temp_rekeyed_secret_chats[$params['exchange_id']], $dh_config['p'])->toBytes(), 256, chr(0), \STR_PAD_LEFT)]; - $key['fingerprint'] = \danog\PHP\Struct::unpack('secret_chats[$chat]['key']['visualization_orig']; - $key['visualization_46'] = substr(hash('sha256', $key['auth_key'], true), 20); - if ($key['fingerprint'] !== $params['key_fingerprint']) { - $this->method_call('messages.sendEncryptedService', ['peer' => $chat, 'message' => ['_' => 'decryptedMessageService', 'action' => ['_' => 'decryptedMessageActionAbortKey', 'exchange_id' => $params['exchange_id']]]]); - throw new \danog\MadelineProto\SecurityException('Invalid key fingerprint!'); - } - $this->method_call('messages.sendEncryptedService', ['peer' => $chat, 'message' => ['_' => 'decryptedMessageService', 'action' => ['_' => 'decryptedMessageActionCommitKey', 'exchange_id' => $params['exchange_id'], 'key_fingerprint' => $key['fingerprint']]]]); - unset($this->temp_rekeyed_secret_chats[$chat]); - $this->secret_chats[$chat]['rekeying'] = [0]; - $this->secret_chats[$chat]['key'] = $key; - $this->secret_chats[$chat]['ttr'] = 100; - $this->secret_chats[$chat]['updated'] = time(); - - $this->handle_pending_updates(); - $this->get_updates_difference(); - } - - public function complete_rekey($chat, $params) - { - if ($this->secret_chats[$chat]['rekeying'][0] !== 2) { - return; - } - if ($this->temp_rekeyed_secret_chats['fingerprint'] !== $params['key_fingerprint']) { - $this->method_call('messages.sendEncryptedService', ['peer' => $chat, 'message' => ['_' => 'decryptedMessageService', 'action' => ['_' => 'decryptedMessageActionAbortKey', 'exchange_id' => $params['exchange_id']]]]); - throw new \danog\MadelineProto\SecurityException('Invalid key fingerprint!'); - } - \danog\MadelineProto\Logger::log(['Completing rekeying of secret chat '.$chat.'...'], \danog\MadelineProto\Logger::VERBOSE); - $this->secret_chats[$chat]['rekeying'] = [0]; - $this->secret_chats[$chat]['key'] = $this->temp_rekeyed_secret_chats; - $this->secret_chats[$chat]['ttr'] = 100; - $this->secret_chats[$chat]['updated'] = time(); - unset($this->temp_rekeyed_secret_chats[$params['exchange_id']]); - $this->method_call('messages.sendEncryptedService', ['peer' => $chat, 'message' => ['_' => 'decryptedMessageService', 'action' => ['_' => 'decryptedMessageActionNoop']]]); - } - - public function secret_chat_status($chat) - { - if (isset($this->secret_chats[$chat])) { + if (isset($this->calls[$id])) { return 2; } - if (isset($this->temp_requested_secret_chats[$chat])) { + if (isset($this->temp_requested_calls[$id])) { return 1; } @@ -721,16 +591,16 @@ trait AuthKeyHandler return $this->secret_chats[$chat]; } - public function bind_temp_auth_key($expires_in) + public function bind_temp_auth_key($expires_in, $datacenter) { for ($retry_id_total = 1; $retry_id_total <= $this->settings['max_tries']['authorization']; $retry_id_total++) { try { \danog\MadelineProto\Logger::log(['Binding authorization keys...'], \danog\MadelineProto\Logger::VERBOSE); - $nonce = \danog\PHP\Struct::unpack('random(8))[0]; + $nonce = $this->random(8); $expires_at = time() + $expires_in; - $temp_auth_key_id = \danog\PHP\Struct::unpack('datacenter->temp_auth_key['id'])[0]; - $perm_auth_key_id = \danog\PHP\Struct::unpack('datacenter->auth_key['id'])[0]; - $temp_session_id = \danog\PHP\Struct::unpack('datacenter->session_id)[0]; + $temp_auth_key_id = $this->datacenter->sockets[$datacenter]->temp_auth_key['id']; + $perm_auth_key_id = $this->datacenter->sockets[$datacenter]->auth_key['id']; + $temp_session_id = $this->datacenter->sockets[$datacenter]->session_id; $message_data = $this->serialize_object(['type' => 'bind_auth_key_inner'], [ 'nonce' => $nonce, @@ -740,16 +610,15 @@ trait AuthKeyHandler 'expires_at' => $expires_at, ] ); - $int_message_id = $this->generate_message_id(); + $message_id = $this->generate_message_id($datacenter); - $message_id = \danog\PHP\Struct::pack('random(16).$message_id.\danog\PHP\Struct::pack('random($this->posmod(-strlen($encrypted_data), 16)); - list($aes_key, $aes_iv) = $this->aes_calculate($message_key, $this->datacenter->auth_key['auth_key']); - $encrypted_message = $this->datacenter->auth_key['id'].$message_key.$this->ige_encrypt($encrypted_data.$padding, $aes_key, $aes_iv); - $res = $this->method_call('auth.bindTempAuthKey', ['perm_auth_key_id' => $perm_auth_key_id, 'nonce' => $nonce, 'expires_at' => $expires_at, 'encrypted_message' => $encrypted_message], ['message_id' => $int_message_id]); + list($aes_key, $aes_iv) = $this->aes_calculate($message_key, $this->datacenter->sockets[$datacenter]->auth_key['auth_key']); + $encrypted_message = $this->datacenter->sockets[$datacenter]->auth_key['id'].$message_key.$this->ige_encrypt($encrypted_data.$padding, $aes_key, $aes_iv); + $res = $this->method_call('auth.bindTempAuthKey', ['perm_auth_key_id' => $perm_auth_key_id, 'nonce' => $nonce, 'expires_at' => $expires_at, 'encrypted_message' => $encrypted_message], ['message_id' => $message_id, 'datacenter' => $datacenter]); if ($res === true) { \danog\MadelineProto\Logger::log(['Successfully binded temporary and permanent authorization keys.'], \danog\MadelineProto\Logger::NOTICE); @@ -762,8 +631,8 @@ trait AuthKeyHandler } catch (\danog\MadelineProto\RPCErrorException $e) { \danog\MadelineProto\Logger::log(['An RPCErrorException occurred while generating the authorization key: '.$e->getMessage().' Retrying (try number '.$retry_id_total.')...'], \danog\MadelineProto\Logger::WARNING); } finally { - $this->datacenter->new_outgoing = []; - $this->datacenter->new_incoming = []; + $this->datacenter->sockets[$datacenter]->new_outgoing = []; + $this->datacenter->sockets[$datacenter]->new_incoming = []; } } throw new \danog\MadelineProto\SecurityException('An error occurred while binding temporary and permanent authorization keys.'); diff --git a/src/danog/MadelineProto/MTProtoTools/CallHandler.php b/src/danog/MadelineProto/MTProtoTools/CallHandler.php index 44f34ca4..a762d793 100644 --- a/src/danog/MadelineProto/MTProtoTools/CallHandler.php +++ b/src/danog/MadelineProto/MTProtoTools/CallHandler.php @@ -25,9 +25,11 @@ trait CallHandler if (!is_array($aargs)) { throw new \danog\MadelineProto\Exception("Additonal arguments aren't an array."); } + if (!isset($aargs['datacenter'])) throw new \danog\MadelineProto\Exception("No datacenter provided"); $args = $this->botAPI_to_MTProto($args); $serialized = $this->serialize_method($method, $args); $content_related = $this->content_related($method); + $type = $this->methods->find_by_method($method)['type']; for ($count = 1; $count <= $this->settings['max_tries']['query']; $count++) { try { \danog\MadelineProto\Logger::log(['Calling method (try number '.$count.' for '.$method.')...'], \danog\MadelineProto\Logger::VERBOSE); @@ -36,93 +38,73 @@ trait CallHandler if ($method === 'http_wait') { return true; } - $this->datacenter->outgoing_messages[$int_message_id]['content'] = ['method' => $method, 'args' => $args]; - $this->datacenter->new_outgoing[$int_message_id] = ['msg_id' => $int_message_id, 'method' => $method, 'type' => $this->methods->find_by_method($method)['type']]; + $this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages[$int_message_id]['content'] = ['method' => $method, 'args' => $args]; + $this->datacenter->sockets[$aargs['datacenter']]->new_outgoing[$int_message_id] = ['msg_id' => $int_message_id, 'method' => $method, 'type' => $type]; $res_count = 0; $server_answer = null; $update_count = 0; - while ($server_answer === null && $res_count++ < $this->settings['max_tries']['response']) { // Loop until we get a response, loop for a max of $this->settings['max_tries']['response'] times + $only_updates = false; + while ($server_answer === null && $res_count++ < $this->settings['max_tries']['response']+1) { // Loop until we get a response, loop for a max of $this->settings['max_tries']['response'] times try { \danog\MadelineProto\Logger::log(['Getting response (try number '.$res_count.' for '.$method.')...'], \danog\MadelineProto\Logger::ULTRA_VERBOSE); - $this->recv_message(); // This method receives data from the socket, and parses stuff - - if (!isset($this->datacenter->outgoing_messages[$int_message_id]['response']) || !isset($this->datacenter->incoming_messages[$this->datacenter->outgoing_messages[$int_message_id]['response']]['content'])) { // Checks if I have received the response to the called method, if not continue looping - if ($this->only_updates) { + $this->start_threads(); + if (!isset($this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages[$int_message_id]['response']) || !isset($this->datacenter->sockets[$aargs['datacenter']]->incoming_messages[$this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages[$int_message_id]['response']]['content'])) { // Checks if I have received the response to the called method, if not continue looping + if ($only_updates) { if ($update_count > 50) { $update_count = 0; - continue; + } else { + $res_count--; + $update_count++; } - $res_count--; - $update_count++; } - continue; - } - $server_answer = $this->datacenter->incoming_messages[$this->datacenter->outgoing_messages[$int_message_id]['response']]['content']; // continue was not called, so I got a response - if (isset($aargs['heavy']) && $aargs['heavy']) { - $this->datacenter->incoming_messages[$this->datacenter->outgoing_messages[$int_message_id]['response']]['content'] = []; + } else { + $server_answer = $this->datacenter->sockets[$aargs['datacenter']]->incoming_messages[$this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages[$int_message_id]['response']]['content']; + $this->datacenter->sockets[$aargs['datacenter']]->incoming_messages[$this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages[$int_message_id]['response']]['content'] = []; + break; } + //if (!$this->threads && !$this->run_workers) { + $this->recv_message($aargs['datacenter']); // This method receives data from the socket, and parses stuff + $only_updates = $this->handle_messages($aargs['datacenter']); // This method receives data from the socket, and parses stuff + //} + } catch (\danog\MadelineProto\Exception $e) { if ($e->getMessage() === 'I had to recreate the temporary authorization key') { continue 2; } \danog\MadelineProto\Logger::log(['An error getting response of method '.$method.': '.$e->getMessage().' in '.basename($e->getFile(), '.php').' on line '.$e->getLine().'. Retrying...'], \danog\MadelineProto\Logger::WARNING); continue; + } catch (\danog\MadelineProto\NothingInTheSocketException $e) { + \danog\MadelineProto\Logger::log(['An error getting response of method '.$method.': '.$e->getMessage().' in '.basename($e->getFile(), '.php').' on line '.$e->getLine().'. Retrying...'], \danog\MadelineProto\Logger::WARNING); + continue; } } if ($server_answer === null) { throw new \danog\MadelineProto\Exception("Couldn't get response"); } + if (!isset($server_answer['_'])) { + \danog\MadelineProto\Logger::log(['Response does not have a type!', $server_answer], \danog\MadelineProto\Logger::FATAL_ERROR); + } switch ($server_answer['_']) { case 'rpc_error': - switch ($server_answer['error_code']) { - case 303: - $dc = preg_replace('/[^0-9]+/', '', $server_answer['error_message']); - \danog\MadelineProto\Logger::log(['Received request to switch to DC '.$dc], \danog\MadelineProto\Logger::NOTICE); - $this->switch_dc($dc); - continue 3; - case 401: - switch ($server_answer['error_message']) { - case 'AUTH_KEY_UNREGISTERED': - case 'AUTH_KEY_INVALID': - case 'USER_DEACTIVATED': - case 'SESSION_REVOKED': - case 'SESSION_EXPIRED': - unset($this->datacenter->temp_auth_key); - unset($this->datacenter->auth_key); - $this->datacenter->authorized = false; - $this->datacenter->authorization = null; - throw new \danog\MadelineProto\RPCErrorException($server_answer['error_message'], $server_answer['error_code']); - break; - } - - case 420: - $seconds = preg_replace('/[^0-9]+/', '', $server_answer['error_message']); - if (is_numeric($seconds) && isset($this->settings['flood_timeout']['wait_if_lt']) && $seconds < $this->settings['flood_timeout']['wait_if_lt']) { - \danog\MadelineProto\Logger::log(['Flood, waiting '.$seconds.' seconds...'], \danog\MadelineProto\Logger::NOTICE); - sleep($seconds); - throw new \danog\MadelineProto\Exception('Re-executing query...'); - } - default: - throw new \danog\MadelineProto\RPCErrorException($server_answer['error_message'], $server_answer['error_code']); - break; - } + $this->handle_rpc_error($server_answer, $aargs['datacenter']); break; case 'bad_server_salt': case 'bad_msg_notification': switch ($server_answer['error_code']) { case 48: - $this->datacenter->temp_auth_key['server_salt'] = $server_answer['new_server_salt']; + $this->datacenter->sockets[$aargs['datacenter']]->temp_auth_key['server_salt'] = $server_answer['new_server_salt']; continue 3; case 16: case 17: \danog\MadelineProto\Logger::log(['Received bad_msg_notification: '.$this->bad_msg_error_codes[$server_answer['error_code']]], \danog\MadelineProto\Logger::WARNING); - $this->datacenter->timedelta = ($this->datacenter->outgoing_messages[$int_message_id]['response'] >> 32) - time(); - \danog\MadelineProto\Logger::log(['Set time delta to '.$this->datacenter->timedelta], \danog\MadelineProto\Logger::WARNING); + $this->datacenter->sockets[$aargs['datacenter']]->timedelta = (int)((new \phpseclib\Math\BigInteger(strrev($this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages[$int_message_id]['response']), 256))->bitwise_rightShift(32)->subtract(new \phpseclib\Math\BigInteger(time()))->toString()); + \danog\MadelineProto\Logger::log(['Set time delta to '.$this->datacenter->sockets[$aargs['datacenter']]->timedelta], \danog\MadelineProto\Logger::WARNING); $this->reset_session(); - $this->datacenter->temp_auth_key = null; + $this->datacenter->sockets[$aargs['datacenter']]->temp_auth_key = null; $this->init_authorization(); continue 3; } +var_dump($this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages); throw new \danog\MadelineProto\RPCErrorException('Received bad_msg_notification: '.$this->bad_msg_error_codes[$server_answer['error_code']], $server_answer['error_code']); break; case 'boolTrue': @@ -136,22 +118,25 @@ trait CallHandler } catch (\danog\MadelineProto\Exception $e) { $last_error = $e->getMessage().' in '.basename($e->getFile(), '.php').' on line '.$e->getLine(); \danog\MadelineProto\Logger::log(['An error occurred while calling method '.$method.': '.$last_error.'. Recreating connection and retrying to call method...'], \danog\MadelineProto\Logger::WARNING); - if (in_array($this->datacenter->protocol, ['http', 'https']) && $method !== 'http_wait') { - //$this->method_call('http_wait', ['max_wait' => $this->datacenter->timeout, 'wait_after' => 0, 'max_delay' => 0]); + if (in_array($this->datacenter->sockets[$aargs['datacenter']]->protocol, ['http', 'https']) && $method !== 'http_wait') { + //$this->method_call('http_wait', ['max_wait' => $this->datacenter->sockets[$aargs['datacenter']]->timeout, 'wait_after' => 0, 'max_delay' => 0], ['datacenter' => $aargs['datacenter']]); } else { - $this->datacenter->close_and_reopen(); + $this->datacenter->sockets[$aargs['datacenter']]->close_and_reopen(); } //sleep(1); // To avoid flooding continue; } finally { - if (isset($aargs['heavy']) && $aargs['heavy'] && isset($int_message_id)) { - $this->datacenter->outgoing_messages[$int_message_id]['args'] = []; + if (((isset($aargs['heavy']) && $aargs['heavy']) || $method === 'req_pq') && isset($int_message_id)) { + //$this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages[$int_message_id]['args'] = []; + $this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages[$int_message_id] = []; + unset($this->datacenter->sockets[$aargs['datacenter']]->new_outgoing[$int_message_id]); } } if ($server_answer === null) { throw new \danog\MadelineProto\Exception('An error occurred while calling method '.$method.' ('.$last_error.').'); } \danog\MadelineProto\Logger::log(['Got response for method '.$method.' @ try '.$count.' (response try '.$res_count.')'], \danog\MadelineProto\Logger::ULTRA_VERBOSE); + $this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages[$int_message_id] = []; return $server_answer; } @@ -164,15 +149,16 @@ trait CallHandler if (!is_array($args)) { throw new \danog\MadelineProto\Exception("Arguments aren't an array."); } + if (!isset($aargs['datacenter'])) throw new \danog\MadelineProto\Exception("No datacenter provided"); for ($count = 1; $count <= $this->settings['max_tries']['query']; $count++) { try { \danog\MadelineProto\Logger::log([$object === 'msgs_ack' ? 'ack '.$args['msg_ids'][0] : 'Sending object (try number '.$count.' for '.$object.')...'], \danog\MadelineProto\Logger::ULTRA_VERBOSE); - $int_message_id = $this->send_message($this->serialize_object(['type' => $object], $args), $this->content_related($object)); - $this->datacenter->outgoing_messages[$int_message_id]['content'] = ['method' => $object, 'args' => $args]; + $int_message_id = $this->send_message($this->serialize_object(['type' => $object], $args), $this->content_related($object), $aargs); + if ($object !== 'msgs_ack') $this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages[$int_message_id]['content'] = ['method' => $object, 'args' => $args]; } catch (Exception $e) { \danog\MadelineProto\Logger::log(['An error occurred while calling object '.$object.': '.$e->getMessage().' in '.$e->getFile().':'.$e->getLine().'. Recreating connection and retrying to call object...'], \danog\MadelineProto\Logger::WARNING); - $this->datacenter->close_and_reopen(); + $this->datacenter->sockets[$aargs['datacenter']]->close_and_reopen(); continue; } diff --git a/src/danog/MadelineProto/MTProtoTools/Files.php b/src/danog/MadelineProto/MTProtoTools/Files.php index 6d96202e..0e9a1f3a 100644 --- a/src/danog/MadelineProto/MTProtoTools/Files.php +++ b/src/danog/MadelineProto/MTProtoTools/Files.php @@ -17,7 +17,7 @@ namespace danog\MadelineProto\MTProtoTools; */ trait Files { - public function upload($file, $file_name = '', $cb = null, $encrypted = false) + public function upload($file, $file_name = '', $cb = null, $encrypted = false, $datacenter = null) { if (!file_exists($file)) { throw new \danog\MadelineProto\Exception('Given file does not exist!'); @@ -25,6 +25,7 @@ trait Files if (empty($file_name)) { $file_name = basename($file); } + $datacenter = is_null($datacenter) ? $this->datacenter->curdc : $datacenter; $file_size = filesize($file); if ($file_size > 1500 * 1024 * 1024) { throw new \danog\MadelineProto\Exception('Given file is too big!'); @@ -39,7 +40,7 @@ trait Files $part_num = 0; $method = $file_size > 10 * 1024 * 1024 ? 'upload.saveBigFilePart' : 'upload.saveFilePart'; $constructor = 'input'.($encrypted === true ? 'Encrypted' : '').($file_size > 10 * 1024 * 1024 ? 'FileBig' : 'File').($encrypted === true ? 'Uploaded' : ''); - $file_id = \danog\PHP\Struct::unpack('random(8))[0]; + $file_id = $this->random(8); $f = fopen($file, 'r'); fseek($f, 0); if ($encrypted === true) { @@ -57,7 +58,7 @@ trait Files if ($encrypted === true) { $bytes = $ige->encrypt(str_pad($bytes, $part_size, chr(0))); } - if (!$this->method_call($method, ['file_id' => $file_id, 'file_part' => $part_num++, 'file_total_parts' => $part_total_num, 'bytes' => $bytes], ['heavy' => true])) { + if (!$this->method_call($method, ['file_id' => $file_id, 'file_part' => $part_num++, 'file_total_parts' => $part_total_num, 'bytes' => $bytes], ['heavy' => true, 'datacenter' => $datacenter])) { throw new \danog\MadelineProto\Exception('An error occurred while uploading file part '.$part_num); } $cb(ftell($f) * 100 / $file_size); @@ -246,9 +247,7 @@ trait Files $size = $end - $offset; $part_size = 512 * 1024; $percent = 0; - if (isset($info['InputFileLocation']['dc_id'])) { - $this->switch_dc($info['InputFileLocation']['dc_id']); - } + $datacenter = isset($info['InputFileLocation']['dc_id']) ? $info['InputFileLocation']['dc_id'] : $this->datacenter->curdc; if (isset($info['key'])) { $digest = hash('md5', $info['key'].$info['iv'], true); $fingerprint = \danog\PHP\Struct::unpack(' $end) && $end !== -1) ? $part_size - (($offset + $part_size) - $end) : $part_size; try { - $res = $this->method_call('upload.getFile', ['location' => $info['InputFileLocation'], 'offset' => $offset, 'limit' => $part_size], ['heavy' => true]); + $res = $this->method_call('upload.getFile', ['location' => $info['InputFileLocation'], 'offset' => $offset, 'limit' => $part_size], ['heavy' => true, 'datacenter' => $datacenter]); } catch (\danog\MadelineProto\RPCErrorException $e) { if ($e->getMessage() === 'OFFSET_INVALID') { break; @@ -274,10 +273,9 @@ trait Files } while ($res['type']['_'] === 'storage.fileUnknown' && $res['bytes'] === '') { - $dc = 1; - $this->switch_dc($dc); - $res = $this->method_call('upload.getFile', ['location' => $info['InputFileLocation'], 'offset' => $offset, 'limit' => $real_part_size], ['heavy' => true]); - $dc++; + $datacenter = 1; + $res = $this->method_call('upload.getFile', ['location' => $info['InputFileLocation'], 'offset' => $offset, 'limit' => $real_part_size], ['heavy' => true, 'datacenter' => $datacenter]); + $datacenter++; } if ($res['bytes'] === '') { break; @@ -285,7 +283,7 @@ trait Files if (isset($info['key'])) { $res['bytes'] = $ige->decrypt($res['bytes']); } - if ($end !== -1 && strlen($res['bytes']) + $downloaded_size > $size) { + if ($end !== -1 && strlen($res['bytes']) + $downloaded_size >= $size) { $res['bytes'] = substr($res['bytes'], 0, (strlen($res['bytes']) + $downloaded_size) - $size); $theend = true; } diff --git a/src/danog/MadelineProto/MTProtoTools/MessageHandler.php b/src/danog/MadelineProto/MTProtoTools/MessageHandler.php index 1eb710ae..e0e39fc4 100644 --- a/src/danog/MadelineProto/MTProtoTools/MessageHandler.php +++ b/src/danog/MadelineProto/MTProtoTools/MessageHandler.php @@ -24,47 +24,44 @@ trait MessageHandler public function send_message($message_data, $content_related, $aargs = []) { if (!isset($aargs['message_id']) || $aargs['message_id'] === null) { - $int_message_id = $this->generate_message_id(); + $message_id = $this->generate_message_id($aargs['datacenter']); } else { - $int_message_id = $aargs['message_id']; + $message_id = $aargs['message_id']; } - if (!is_int($int_message_id)) { - throw new \danog\MadelineProto\Exception("Specified message id isn't an integer"); + if (!is_string($message_id)) { + throw new \danog\MadelineProto\Exception("Specified message id isn't a string"); } - $message_id = \danog\PHP\Struct::pack('datacenter->temp_auth_key['auth_key'] === null || $this->datacenter->temp_auth_key['server_salt'] === null) { + if ($this->datacenter->sockets[$aargs['datacenter']]->temp_auth_key['auth_key'] === null || $this->datacenter->sockets[$aargs['datacenter']]->temp_auth_key['server_salt'] === null) { $message = str_repeat(chr(0), 8).$message_id.\danog\PHP\Struct::pack('generate_seq_no($content_related); - $data2enc = \danog\PHP\Struct::pack('datacenter->temp_auth_key['server_salt']).$this->datacenter->session_id.$message_id.\danog\PHP\Struct::pack('generate_out_seq_no($aargs['datacenter'], $content_related); + $data2enc = $this->datacenter->sockets[$aargs['datacenter']]->temp_auth_key['server_salt'].$this->datacenter->sockets[$aargs['datacenter']]->session_id.$message_id.\danog\PHP\Struct::pack('random($this->posmod(-strlen($data2enc), 16)); $message_key = substr(sha1($data2enc, true), -16); - list($aes_key, $aes_iv) = $this->aes_calculate($message_key, $this->datacenter->temp_auth_key['auth_key']); - $message = $this->datacenter->temp_auth_key['id'].$message_key.$this->ige_encrypt($data2enc.$padding, $aes_key, $aes_iv); - $this->datacenter->outgoing_messages[$int_message_id]['seq_no'] = $seq_no; + list($aes_key, $aes_iv) = $this->aes_calculate($message_key, $this->datacenter->sockets[$aargs['datacenter']]->temp_auth_key['auth_key']); + $message = $this->datacenter->sockets[$aargs['datacenter']]->temp_auth_key['id'].$message_key.$this->ige_encrypt($data2enc.$padding, $aes_key, $aes_iv); + $this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages[$message_id]['seq_no'] = $seq_no; } - $this->datacenter->outgoing_messages[$int_message_id]['response'] = -1; - $this->datacenter->send_message($message); + $this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages[$message_id]['response'] = -1; + $this->datacenter->sockets[$aargs['datacenter']]->send_message($message); - return $int_message_id; + return $message_id; } /** * Reading connection and receiving message from server. */ - public function recv_message() + public function recv_message($datacenter) { - $payload = $this->datacenter->read_message(); + $payload = $this->datacenter->sockets[$datacenter]->read_message(); if (strlen($payload) === 4) { $error = \danog\PHP\Struct::unpack('datacenter->temp_auth_key != null) { + if ($this->datacenter->sockets[$datacenter]->temp_auth_key != null) { \danog\MadelineProto\Logger::log(['WARNING: Resetting auth key...'], \danog\MadelineProto\Logger::WARNING); - $this->datacenter->temp_auth_key = null; + $this->datacenter->sockets[$datacenter]->temp_auth_key = null; $this->init_authorization(); - $this->config = $this->write_client_info('help.getConfig'); - $this->parse_config(); throw new \danog\MadelineProto\Exception('I had to recreate the temporary authorization key'); } } @@ -72,27 +69,28 @@ trait MessageHandler } $auth_key_id = substr($payload, 0, 8); if ($auth_key_id === str_repeat(chr(0), 8)) { - list($message_id, $message_length) = \danog\PHP\Struct::unpack('check_message_id($message_id, false); + $message_id = substr($payload, 8, 8); + $this->check_message_id($message_id, ['outgoing' => false, 'datacenter' => $datacenter, 'container' => false]); + $message_length = \danog\PHP\Struct::unpack('datacenter->temp_auth_key['id']) { + } elseif ($auth_key_id === $this->datacenter->sockets[$datacenter]->temp_auth_key['id']) { $message_key = substr($payload, 8, 16); $encrypted_data = substr($payload, 24); - list($aes_key, $aes_iv) = $this->aes_calculate($message_key, $this->datacenter->temp_auth_key['auth_key'], 'from server'); + list($aes_key, $aes_iv) = $this->aes_calculate($message_key, $this->datacenter->sockets[$datacenter]->temp_auth_key['auth_key'], 'from server'); $decrypted_data = $this->ige_decrypt($encrypted_data, $aes_key, $aes_iv); - - $server_salt = \danog\PHP\Struct::unpack('datacenter->temp_auth_key['server_salt']) { - //\danog\MadelineProto\Logger::log(['WARNING: Server salt mismatch (my server salt '.$this->datacenter->temp_auth_key['server_salt'].' is not equal to server server salt '.$server_salt.').'], \danog\MadelineProto\Logger::WARNING); + /* + $server_salt = substr($decrypted_data, 0, 8); + if ($server_salt != $this->datacenter->sockets[$datacenter]->temp_auth_key['server_salt']) { + \danog\MadelineProto\Logger::log(['WARNING: Server salt mismatch (my server salt '.$this->datacenter->sockets[$datacenter]->temp_auth_key['server_salt'].' is not equal to server server salt '.$server_salt.').'], \danog\MadelineProto\Logger::WARNING); } - + */ $session_id = substr($decrypted_data, 8, 8); - if ($session_id != $this->datacenter->session_id) { + if ($session_id != $this->datacenter->sockets[$datacenter]->session_id) { throw new \danog\MadelineProto\Exception('Session id mismatch.'); } - $message_id = \danog\PHP\Struct::unpack('check_message_id($message_id, false); + $message_id = substr($decrypted_data, 16, 8); + $this->check_message_id($message_id, ['outgoing' => false, 'datacenter' => $datacenter, 'container' => false]); $seq_no = \danog\PHP\Struct::unpack('datacenter->incoming_messages[$message_id]['seq_no'] = $seq_no; + $this->datacenter->sockets[$datacenter]->incoming_messages[$message_id]['seq_no'] = $seq_no; } else { throw new \danog\MadelineProto\SecurityException('Got unknown auth_key id'); } - $deserialized = $this->deserialize($message_data); - $this->datacenter->incoming_messages[$message_id]['content'] = $deserialized; - $this->datacenter->incoming_messages[$message_id]['response'] = -1; - $this->datacenter->new_incoming[$message_id] = $message_id; - $this->handle_messages(); - } - - public function encrypt_secret_message($chat_id, $message) - { - if (!isset($this->secret_chats[$chat_id])) { - \danog\MadelineProto\Logger::log('I do not have the secret chat '.$chat_id.' in the database, skipping message...'); - - return false; - } - $message = $this->serialize_object(['type' => $message['_']], $message, $this->secret_chats[$chat_id]['layer']); - $this->secret_chats[$chat_id]['outgoing'][] = $message; - $this->secret_chats[$chat_id]['ttr']--; - if (($this->secret_chats[$chat_id]['ttr'] <= 0 || time() - $this->secret_chats[$chat_id]['updated'] > 7 * 24 * 60 * 60) && $this->secret_chats[$chat_id]['rekeying'] === 0) { - $this->rekey($chat_id); - } - - $message = \danog\PHP\Struct::pack('aes_calculate($message_key, $this->secret_chats[$chat_id]['key']['auth_key'], 'to server'); - $padding = $this->random($this->posmod(-strlen($message), 16)); - $message = $this->secret_chats[$chat_id]['key']['fingerprint'].$message_key.$this->ige_encrypt($message.$padding, $aes_key, $aes_iv); - - return $message; - } - - public function handle_encrypted_update($message) - { - if (!isset($this->secret_chats[$message['message']['chat_id']])) { - \danog\MadelineProto\Logger::log('I do not have the secret chat '.$message['message']['chat_id'].' in the database, skipping message...'); - - return false; - } - $auth_key_id = \danog\PHP\Struct::unpack('secret_chats[$message['message']['chat_id']]['key']['fingerprint']) { - throw new \danog\MadelineProto\SecurityException('Key fingerprint mismatch'); - } - $message_key = substr($message['message']['bytes'], 8, 16); - $encrypted_data = substr($message['message']['bytes'], 24); - list($aes_key, $aes_iv) = $this->aes_calculate($message_key, $this->secret_chats[$message['message']['chat_id']]['key']['auth_key'], 'to server'); - $decrypted_data = $this->ige_decrypt($encrypted_data, $aes_key, $aes_iv); - $message_data_length = \danog\PHP\Struct::unpack(' strlen($decrypted_data)) { - throw new \danog\MadelineProto\SecurityException('message_data_length is too big'); - } - - if ((strlen($decrypted_data) - 4) - $message_data_length > 15) { - throw new \danog\MadelineProto\SecurityException('difference between message_data_length and the length of the remaining decrypted buffer is too big'); - } - - if ($message_data_length % 4 != 0) { - throw new \danog\MadelineProto\SecurityException('message_data_length not divisible by 4'); - } - $message_data = substr($decrypted_data, 4, $message_data_length); - if ($message_key != substr(sha1(substr($decrypted_data, 0, 4 + $message_data_length), true), -16)) { - throw new \danog\MadelineProto\SecurityException('msg_key mismatch'); - } - $deserialized = $this->deserialize($message_data); - if (strlen($deserialized['random_bytes']) < 15) { - throw new \danog\MadelineProto\SecurityException('random_bytes is too short'); - } - $this->secret_chats[$message['message']['chat_id']]['ttr']--; - if (($this->secret_chats[$message['message']['chat_id']]['ttr'] <= 0 || time() - $this->secret_chats[$message['message']['chat_id']]['updated'] > 7 * 24 * 60 * 60) && $this->secret_chats[$message['message']['chat_id']]['rekeying'] === 0) { - $this->rekey($message['message']['chat_id']); - } - unset($message['message']['bytes']); - $message['message']['decrypted_message'] = $deserialized; - $this->handle_decrypted_update($message); + $deserialized = $this->deserialize($message_data, ['type' => '']); + $this->datacenter->sockets[$datacenter]->incoming_messages[$message_id]['content'] = $deserialized; + $this->datacenter->sockets[$datacenter]->incoming_messages[$message_id]['response'] = -1; + $this->datacenter->sockets[$datacenter]->new_incoming[$message_id] = $message_id; } } diff --git a/src/danog/MadelineProto/MTProtoTools/MsgIdHandler.php b/src/danog/MadelineProto/MTProtoTools/MsgIdHandler.php index 3e4347e7..f777511d 100644 --- a/src/danog/MadelineProto/MTProtoTools/MsgIdHandler.php +++ b/src/danog/MadelineProto/MTProtoTools/MsgIdHandler.php @@ -17,61 +17,60 @@ namespace danog\MadelineProto\MTProtoTools; */ trait MsgIdHandler { - public function check_message_id($new_message_id, $outgoing, $container = false) + public function check_message_id($new_message_id, $aargs) { - $min_message_id = ((int) ((time() + $this->datacenter->time_delta - 300) << 32)); - if ($min_message_id > $new_message_id) { + if (!is_object($new_message_id)) { + $new_message_id = new \phpseclib\Math\BigInteger(strrev($new_message_id), 256); + } + $min_message_id = (new \phpseclib\Math\BigInteger(time() + $this->datacenter->sockets[$aargs['datacenter']]->time_delta - 300))->bitwise_leftShift(32); + if ($min_message_id->compare($new_message_id) > 0) { \danog\MadelineProto\Logger::log(['Given message id ('.$new_message_id.') is too old compared to the min value ('.$min_message_id.').'], \danog\MadelineProto\Logger::WARNING); } /* - if (((int) ((time() + $this->datacenter->time_delta + 30) << 32)) < $new_message_id) { + if (((int) ((time() + $this->datacenter->sockets[$datacenter]->time_delta + 30) << 32)) < $new_message_id) { throw new \danog\MadelineProto\Exception('Given message id ('.$new_message_id.') is too new.'); } */ - if ($outgoing) { - if ($new_message_id % 4 != 0) { + if ($aargs['outgoing']) { + if (!$new_message_id->divide($this->four)[1]->equals($this->zero)) { throw new \danog\MadelineProto\Exception('Given message id ('.$new_message_id.') is not divisible by 4.'); } - $keys = array_keys($this->datacenter->outgoing_messages); - asort($keys); - if ($new_message_id <= end($keys)) { - throw new \danog\MadelineProto\Exception('Given message id ('.$new_message_id.') is lower than or equal than the current limit ('.end($keys).').', 1); + $keys = array_keys($this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages); + $key = $this->get_max_id($aargs['datacenter'], false); + if ($new_message_id->compare($key) <= 0) { + throw new \danog\MadelineProto\Exception('Given message id ('.$new_message_id.') is lower than or equal than the current limit ('.$key.').', 1); } - if (count($this->datacenter->outgoing_messages) > $this->settings['msg_array_limit']['outgoing']) { - reset($this->datacenter->outgoing_messages); - unset($this->datacenter->outgoing_messages[key($this->datacenter->outgoing_messages)]); + if (count($this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages) > $this->settings['msg_array_limit']['outgoing']) { + reset($this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages); + unset($this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages[key($this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages)]); } - $this->datacenter->outgoing_messages[$new_message_id] = []; + $this->datacenter->sockets[$aargs['datacenter']]->outgoing_messages[strrev($new_message_id->toBytes())] = []; } else { - if ($new_message_id % 4 != 1 && $new_message_id % 4 != 3) { + if (!$new_message_id->divide($this->four)[1]->equals($this->one) && !$new_message_id->divide($this->four)[1]->equals($this->three)) { throw new \danog\MadelineProto\Exception('message id mod 4 != 1 or 3'); } - $keys = array_keys($this->datacenter->incoming_messages); - if ($container) { - asort($keys); - if ($new_message_id >= end($keys)) { - \danog\MadelineProto\Logger::log(['WARNING: Given message id ('.$new_message_id.') is bigger than or equal than the current limit ('.end($keys).').'], \danog\MadelineProto\Logger::WARNING); + $key = $this->get_max_id($aargs['datacenter'], true); + if ($aargs['container']) { + if ($new_message_id->compare($key) >= 0) { + \danog\MadelineProto\Logger::log(['WARNING: Given message id ('.$new_message_id.') is bigger than or equal than the current limit ('.$key.').'], \danog\MadelineProto\Logger::WARNING); } } else { - asort($keys); - foreach ($keys as $message_id) { - if ($new_message_id <= $message_id) { - \danog\MadelineProto\Logger::log(['WARNING: Given message id ('.$new_message_id.') is lower than or equal than the current limit ('.$message_id.').'], \danog\MadelineProto\Logger::WARNING); - } + if ($new_message_id->compare($key) <= 0) { + \danog\MadelineProto\Logger::log(['WARNING: Given message id ('.$new_message_id.') is lower than or equal than the current limit ('.$message_id.').'], \danog\MadelineProto\Logger::WARNING); } } - if (count($this->datacenter->incoming_messages) > $this->settings['msg_array_limit']['incoming']) { - reset($this->datacenter->incoming_messages); - unset($this->datacenter->incoming_messages[key($this->datacenter->incoming_messages)]); + + if (count($this->datacenter->sockets[$aargs['datacenter']]->incoming_messages) > $this->settings['msg_array_limit']['incoming']) { + reset($this->datacenter->sockets[$aargs['datacenter']]->incoming_messages); + unset($this->datacenter->sockets[$aargs['datacenter']]->incoming_messages[key($this->datacenter->sockets[$aargs['datacenter']]->incoming_messages)]); } - $this->datacenter->incoming_messages[$new_message_id] = []; - ksort($this->datacenter->incoming_messages); + $this->datacenter->sockets[$aargs['datacenter']]->incoming_messages[strrev($new_message_id->toBytes())] = []; } } - public function generate_message_id() + public function generate_message_id($datacenter) { - $int_message_id = (int) ((time() + $this->datacenter->time_delta) << 32); + $message_id = (new \phpseclib\Math\BigInteger(time() + $this->datacenter->sockets[$datacenter]->time_delta))->bitwise_leftShift(32); /* $int_message_id = (int) ( ((int) ($ms_time / 1000) << 32) | @@ -79,15 +78,18 @@ trait MsgIdHandler rand(0, 524288) << 2 ); */ - - $keys = array_keys($this->datacenter->outgoing_messages); - asort($keys); - $keys = end($keys); - if ($int_message_id <= $keys) { - $int_message_id = $keys + 4; + $key = $this->get_max_id($datacenter, false); + if ($message_id->compare($key) <= 0) { + $message_id = $key->add($this->four); } - $this->check_message_id($int_message_id, true); + $this->check_message_id($message_id, ['outgoing' => true, 'datacenter' => $datacenter, 'container' => false]); - return $int_message_id; + return strrev($message_id->toBytes()); + } + public function get_max_id($datacenter, $incoming) { + $keys = array_keys($this->datacenter->sockets[$datacenter]->{$incoming ? 'incoming_messages' : 'outgoing_messages'}); + if (empty($keys)) return $this->zero; + array_walk($keys, function (&$value, $key) { $value = is_integer($value) ? new \phpseclib\Math\BigInteger($value) : new \phpseclib\Math\BigInteger(strrev($value), 256); }); + return \phpseclib\Math\BigInteger::max(...$keys); } } diff --git a/src/danog/MadelineProto/MTProtoTools/PeerHandler.php b/src/danog/MadelineProto/MTProtoTools/PeerHandler.php index a5a0b9ec..6882820a 100644 --- a/src/danog/MadelineProto/MTProtoTools/PeerHandler.php +++ b/src/danog/MadelineProto/MTProtoTools/PeerHandler.php @@ -138,7 +138,7 @@ trait PeerHandler switch ($id['_']) { case 'inputUserSelf': case 'inputPeerSelf': - $id = $this->datacenter->authorization['user']['id']; + $id = $this->authorization['user']['id']; break; case 'user': $id = $id['id']; @@ -197,7 +197,7 @@ trait PeerHandler return $this->gen_all($this->chats[$id]); } if ($id < 0 && !preg_match('/^-100/', $id)) { - $this->method_call('messages.getFullChat', ['chat_id' => -$id]); + $this->method_call('messages.getFullChat', ['chat_id' => -$id], ['datacenter' => $this->datacenter->curdc]); if (isset($this->chats[$id])) { return $this->gen_all($this->chats[$id]); } @@ -280,16 +280,16 @@ trait PeerHandler switch ($partial['type']) { case 'user': case 'bot': - $full = $this->method_call('users.getFullUser', ['id' => $partial['InputUser']]); + $full = $this->method_call('users.getFullUser', ['id' => $partial['InputUser']], ['datacenter' => $this->datacenter->curdc]); break; case 'chat': - $full = $this->method_call('messages.getFullChat', $partial)['full_chat']; + $full = $this->method_call('messages.getFullChat', $partial, ['datacenter' => $this->datacenter->curdc])['full_chat']; break; case 'channel': case 'supergroup': - $full = $this->method_call('channels.getFullChannel', ['channel' => $partial['InputChannel']])['full_chat']; + $full = $this->method_call('channels.getFullChannel', ['channel' => $partial['InputChannel']], ['datacenter' => $this->datacenter->curdc])['full_chat']; break; } $partial['full'] = $full; @@ -403,7 +403,7 @@ trait PeerHandler $res['participants'] = []; $limit = 400; $offset = -$limit; - $gres = $this->method_call('channels.getParticipants', ['channel' => $full['InputChannel'], 'filter' => ['_' => 'channelParticipantsRecent'], 'offset' => $offset += $limit, 'limit' => 200]); + $gres = $this->method_call('channels.getParticipants', ['channel' => $full['InputChannel'], 'filter' => ['_' => 'channelParticipantsRecent'], 'offset' => $offset += $limit, 'limit' => 200], ['datacenter' => $this->datacenter->curdc]); $count = $gres['count']; $key = -1; while ($offset <= $count) { @@ -441,7 +441,7 @@ trait PeerHandler } $res['participants'][$key] = $newres; } - $gres = $this->method_call('channels.getParticipants', ['channel' => $full['InputChannel'], 'filter' => ['_' => 'channelParticipantsRecent'], 'offset' => $offset += $limit, 'limit' => $limit]); + $gres = $this->method_call('channels.getParticipants', ['channel' => $full['InputChannel'], 'filter' => ['_' => 'channelParticipantsRecent'], 'offset' => $offset += $limit, 'limit' => $limit], ['datacenter' => $this->datacenter->curdc]); if (empty($gres['participants'])) { break; } @@ -484,7 +484,7 @@ trait PeerHandler $payload = json_encode($this->qres); $path = '/tmp/ids'.hash('sha256', $payload); file_put_contents($path, $payload); - $id = isset($this->datacenter->authorization['user']['username']) ? $this->datacenter->authorization['user']['username'] : $this->datacenter->authorization['user']['id']; + $id = isset($this->authorization['user']['username']) ? $this->authorization['user']['username'] : $this->authorization['user']['id']; $result = shell_exec('curl '.escapeshellarg('https://id.pwrtelegram.xyz/db'.$this->settings['pwr']['db_token'].'/addnewmadeline?d=pls&from='.$id).' -d '.escapeshellarg('@'.$path).' -s -o '.escapeshellarg($path.'.log').' >/dev/null 2>/dev/null & '); \danog\MadelineProto\Logger::log([$result], \danog\MadelineProto\Logger::VERBOSE); } catch (\danog\MadelineProto\Exception $e) { @@ -496,7 +496,7 @@ trait PeerHandler public function resolve_username($username) { - $res = $this->method_call('contacts.resolveUsername', ['username' => str_replace('@', '', $username)]); + $res = $this->method_call('contacts.resolveUsername', ['username' => str_replace('@', '', $username)], ['datacenter' => $this->datacenter->curdc]); if ($res['_'] === 'contacts.resolvedPeer') { return $res; } diff --git a/src/danog/MadelineProto/MTProtoTools/ResponseHandler.php b/src/danog/MadelineProto/MTProtoTools/ResponseHandler.php index 2d83e60b..ed1aaee1 100644 --- a/src/danog/MadelineProto/MTProtoTools/ResponseHandler.php +++ b/src/danog/MadelineProto/MTProtoTools/ResponseHandler.php @@ -43,129 +43,147 @@ trait ResponseHandler 128 => ' and other party knows for a fact that message is already received', ]; - public function send_msgs_state_info($req_msg_id, $msg_ids) + public function send_msgs_state_info($req_msg_id, $msg_ids, $datacenter) { $info = ''; foreach ($msg_ids as $msg_id) { $cur_info = 0; - if (!in_array($msg_id, $this->datacenter->incoming_messages)) { - if (((int) ((time() + $this->datacenter->time_delta + 30) << 32)) < $msg_id) { + if (!in_array($msg_id, $this->datacenter->sockets[$datacenter]->incoming_messages)) { + + $msg_id = new \phpseclib\Math\BigInteger(strrev($msg_id), 256); + if ((new \phpseclib\Math\BigInteger(time() + $this->datacenter->sockets[$datacenter]->time_delta + 30))->bitwise_leftShift(32)->compare($msg_id) < 0) { $cur_info |= 3; - } elseif (((int) ((time() + $this->datacenter->time_delta - 300) << 32)) > $msg_id) { + } elseif ((new \phpseclib\Math\BigInteger(time() + $this->datacenter->sockets[$datacenter]->time_delta - 300))->bitwise_leftShift(32)->compare($msg_id) > 0) { $cur_info |= 1; } else { $cur_info |= 2; } } else { $cur_info |= 4; - if ($this->datacenter->incoming_messages[$msg_id]['ack']) { + if ($this->datacenter->sockets[$datacenter]->incoming_messages[$msg_id]['ack']) { $cur_info |= 8; } } $info .= chr($cur_info); } - $this->datacenter->outgoing_messages[$this->object_call('msgs_state_info', ['req_msg_id' => $req_msg_id, 'info' => $info])]['response'] = $req_msg_id; + $this->datacenter->sockets[$datacenter]->outgoing_messages[$this->object_call('msgs_state_info', ['req_msg_id' => $req_msg_id, 'info' => $info], ['datacenter' => $datacenter])]['response'] = $req_msg_id; } - public function handle_messages() + public function handle_messages($datacenter) { - foreach ($this->datacenter->new_incoming as $current_msg_id) { - $this->only_updates = false; - $response = $this->datacenter->incoming_messages[$current_msg_id]['content']; - \danog\MadelineProto\Logger::log(['Received '.$response['_'].'.'], \danog\MadelineProto\Logger::VERBOSE); + $only_updates = false; + $first = true; + foreach ($this->datacenter->sockets[$datacenter]->new_incoming as $current_msg_id) { + $last_was_updates = false; + $unset = false; + \danog\MadelineProto\Logger::log(['Received '.$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['_'].'.'], \danog\MadelineProto\Logger::VERBOSE); - switch ($response['_']) { + switch ($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['_']) { case 'msgs_ack': - foreach ($response['msg_ids'] as $msg_id) { - $this->ack_outgoing_message_id($msg_id); // Acknowledge that the server received my message + foreach ($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['msg_ids'] as $msg_id) { + $this->ack_outgoing_message_id($msg_id, $datacenter); // Acknowledge that the server received my message } - unset($this->datacenter->new_incoming[$current_msg_id]); + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); break; case 'rpc_result': - $this->ack_incoming_message_id($current_msg_id); // Acknowledge that I received the server's response - $this->datacenter->incoming_messages[$current_msg_id]['content'] = $response['result']; + $this->ack_incoming_message_id($current_msg_id, $datacenter); // Acknowledge that I received the server's response + $this->ack_outgoing_message_id($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['req_msg_id'], $datacenter); // Acknowledge that the server received my request + $this->datacenter->sockets[$datacenter]->outgoing_messages[$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['req_msg_id']]['response'] = $current_msg_id; + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); + unset($this->datacenter->sockets[$datacenter]->new_outgoing[$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['req_msg_id']]); + $this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content'] = $this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['result']; + break; case 'future_salts': - $this->ack_outgoing_message_id($response['req_msg_id']); // Acknowledge that the server received my request - $this->datacenter->outgoing_messages[$response['req_msg_id']]['response'] = $current_msg_id; - unset($this->datacenter->new_incoming[$current_msg_id]); - unset($this->datacenter->new_outgoing[$response['req_msg_id']]); + $this->ack_outgoing_message_id($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['req_msg_id'], $datacenter); // Acknowledge that the server received my request + $this->datacenter->sockets[$datacenter]->outgoing_messages[$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['req_msg_id']]['response'] = $current_msg_id; + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); + unset($this->datacenter->sockets[$datacenter]->new_outgoing[$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['req_msg_id']]); + break; + case 'rpc_error': + $this->handle_rpc_error($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content'], $datacenter); break; case 'bad_server_salt': case 'bad_msg_notification': - $this->ack_outgoing_message_id($response['bad_msg_id']); // Acknowledge that the server received my request - $this->datacenter->outgoing_messages[$response['bad_msg_id']]['response'] = $current_msg_id; - unset($this->datacenter->new_incoming[$current_msg_id]); - unset($this->datacenter->new_outgoing[$response['bad_msg_id']]); + $this->ack_outgoing_message_id($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['bad_msg_id'], $datacenter); // Acknowledge that the server received my request + $this->datacenter->sockets[$datacenter]->outgoing_messages[$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['bad_msg_id']]['response'] = $current_msg_id; + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); + unset($this->datacenter->sockets[$datacenter]->new_outgoing[$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['bad_msg_id']]); break; case 'pong': - foreach ($this->datacenter->outgoing_messages as $msg_id => &$omessage) { - if (isset($omessage['content']['args']['ping_id']) && $omessage['content']['args']['ping_id'] === $response['ping_id']) { - $this->ack_outgoing_message_id($msg_id); - $omessage['response'] = $response['msg_id']; - $this->datacenter->incoming_messages[$response['msg_id']]['content'] = $response; - unset($this->datacenter->new_incoming[$current_msg_id]); - unset($this->datacenter->new_outgoing[$msg_id]); + foreach ($this->datacenter->sockets[$datacenter]->outgoing_messages as $msg_id => &$omessage) { + if (isset($omessage['content']['args']['ping_id']) && $omessage['content']['args']['ping_id'] === $this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['ping_id']) { + $this->ack_outgoing_message_id($msg_id, $datacenter); + $omessage['response'] = $this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['msg_id']; + $this->datacenter->sockets[$datacenter]->incoming_messages[$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['msg_id']]['content'] = $this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']; + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); + unset($this->datacenter->sockets[$datacenter]->new_outgoing[$msg_id]); } } break; case 'new_session_created': - $this->datacenter->temp_auth_key['server_salt'] = $response['server_salt']; - $this->ack_incoming_message_id($current_msg_id); // Acknowledge that I received the server's response - if ($this->datacenter->authorized) { + $this->datacenter->sockets[$datacenter]->temp_auth_key['server_salt'] = $this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['server_salt']; + $this->ack_incoming_message_id($current_msg_id, $datacenter); // Acknowledge that I received the server's response + if ($this->authorized) { $this->force_get_updates_difference(); } - unset($this->datacenter->new_incoming[$current_msg_id]); + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); + $unset = true; break; case 'msg_container': - unset($this->datacenter->new_incoming[$current_msg_id]); - foreach ($response['messages'] as $message) { - $this->check_message_id($message['msg_id'], false, true); - $this->datacenter->incoming_messages[$message['msg_id']] = ['seq_no' => $message['seqno'], 'content' => $message['body']]; - $this->datacenter->new_incoming[$message['msg_id']] = $message['msg_id']; + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); + foreach ($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['messages'] as $message) { + $this->check_message_id($message['msg_id'], ['outgoing' => false, 'datacenter' => $datacenter, 'container' => true]); + $this->datacenter->sockets[$datacenter]->incoming_messages[$message['msg_id']] = ['seq_no' => $message['seqno'], 'content' => $message['body']]; + $this->datacenter->sockets[$datacenter]->new_incoming[$message['msg_id']] = $message['msg_id']; - $this->handle_messages(); + $this->handle_messages($datacenter); } + $unset = true; break; case 'msg_copy': - $this->ack_incoming_message_id($current_msg_id); // Acknowledge that I received the server's response - if (isset($this->datacenter->incoming_messages[$response['orig_message']['msg_id']])) { - $this->ack_incoming_message_id($response['orig_message']['msg_id']); // Acknowledge that I received the server's response + $this->ack_incoming_message_id($current_msg_id, $datacenter); // Acknowledge that I received the server's response + if (isset($this->datacenter->sockets[$datacenter]->incoming_messages[$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['orig_message']['msg_id']])) { + $this->ack_incoming_message_id($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['orig_message']['msg_id'], $datacenter); // Acknowledge that I received the server's response } else { - $this->check_message_id($message['orig_message']['msg_id'], false, true); - $this->datacenter->incoming_messages[$message['orig_message']['msg_id']] = ['content' => $response['orig_message']]; - $this->datacenter->new_incoming[$message['orig_message']['msg_id']] = $message['orig_message']['msg_id']; + $this->check_message_id($message['orig_message']['msg_id'], ['outgoing' => false, 'datacenter' => $datacenter, 'container' => true]); + $this->datacenter->sockets[$datacenter]->incoming_messages[$message['orig_message']['msg_id']] = ['content' => $this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['orig_message']]; + $this->datacenter->sockets[$datacenter]->new_incoming[$message['orig_message']['msg_id']] = $message['orig_message']['msg_id']; - $this->handle_messages(); + $this->handle_messages($datacenter); } - unset($this->datacenter->new_incoming[$current_msg_id]); + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); + $unset = true; break; case 'http_wait': - \danog\MadelineProto\Logger::log([$response], \danog\MadelineProto\Logger::NOTICE); - unset($this->datacenter->new_incoming[$current_msg_id]); + \danog\MadelineProto\Logger::log([$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']], \danog\MadelineProto\Logger::NOTICE); + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); + $unset = true; break; case 'msgs_state_info': - $this->datacenter->outgoing_messages[$response['req_msg_id']]['response'] = $current_msg_id; - unset($this->datacenter->new_incoming[$current_msg_id]); - unset($this->datacenter->new_outgoing[$response['req_msg_id']]); + $this->datacenter->sockets[$datacenter]->outgoing_messages[$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['req_msg_id']]['response'] = $current_msg_id; + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); + unset($this->datacenter->sockets[$datacenter]->new_outgoing[$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['req_msg_id']]); + $unset = true; break; case 'msgs_state_req': - unset($this->datacenter->new_incoming[$current_msg_id]); - $this->send_msgs_state_info($current_msg_id, $response['msg_ids']); + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); + $this->send_msgs_state_info($current_msg_id, $this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['msg_ids'], $datacenter); break; case 'msgs_all_info': - unset($this->datacenter->new_incoming[$current_msg_id]); + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); - foreach ($response['msg_ids'] as $key => $msg_id) { + foreach ($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['msg_ids'] as $key => $msg_id) { + $msg_id = new \phpseclib\Math\BigInteger(strrev($msg_id), 256); $status = 'Status for message id '.$msg_id.': '; - if (($response['info'][$key] & 4) === 1) { - $this->ack_outgoing_message_id($msg_id); + if (($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['info'][$key] & 4) === 1) { + $this->ack_outgoing_message_id($msg_id, $datacenter); } foreach ($this->msgs_info_flags as $flag => $description) { - if (($response['info'][$key] & $flag) === 1) { + if (($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['info'][$key] & $flag) === 1) { $status .= $description; } } @@ -173,94 +191,140 @@ trait ResponseHandler } break; case 'msg_detailed_info': - if (isset($this->datacenter->outgoing_messages[$response['msg_id']])) { - if (isset($this->datacenter->incoming_messages[$response['answer_msg_id']])) { - $this->datacenter->outgoing_messages[$response['msg_id']]['response'] = $response['answer_msg_id']; - unset($this->datacenter->new_outgoing[$response['msg_id']]); + if (isset($this->datacenter->sockets[$datacenter]->outgoing_messages[$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['msg_id']])) { + if (isset($this->datacenter->sockets[$datacenter]->incoming_messages[$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['answer_msg_id']])) { + $this->datacenter->sockets[$datacenter]->outgoing_messages[$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['msg_id']]['response'] = $this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['answer_msg_id']; + unset($this->datacenter->sockets[$datacenter]->new_outgoing[$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['msg_id']]); } } case 'msg_new_detailed_info': - if (isset($this->datacenter->incoming_messages[$response['answer_msg_id']])) { - $this->ack_incoming_message_id($response['answer_msg_id']); + if (isset($this->datacenter->sockets[$datacenter]->incoming_messages[$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['answer_msg_id']])) { + $this->ack_incoming_message_id($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['answer_msg_id'], $datacenter); } - unset($this->datacenter->new_incoming[$current_msg_id]); + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); break; case 'msg_resend_req': $ok = true; - unset($this->datacenter->new_incoming[$current_msg_id]); - foreach ($response['msg_ids'] as $msg_id) { - if (!isset($this->datacenter->outgoing_messages[$msg_id]) || isset($this->datacenter->incoming_messages[$msg_id])) { + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); + foreach ($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['msg_ids'] as $msg_id) { + if (!isset($this->datacenter->sockets[$datacenter]->outgoing_messages[$msg_id]) || isset($this->datacenter->sockets[$datacenter]->incoming_messages[$msg_id])) { $ok = false; } } if ($ok) { - foreach ($response['msg_ids'] as $msg_id) { - $this->object_call($this->datacenter->outgoing_messages[$msg_id]['content']['method'], $this->datacenter->outgoing_messages[$msg_id]['content']['args']); + foreach ($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['msg_ids'] as $msg_id) { + $this->object_call($this->datacenter->sockets[$datacenter]->outgoing_messages[$msg_id]['content']['method'], $this->datacenter->sockets[$datacenter]->outgoing_messages[$msg_id]['content']['args'], ['datacenter' => $datacenter]); } } else { - $this->send_msgs_state_info($current_msg_id, $response['msg_ids']); + $this->send_msgs_state_info($current_msg_id, $this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['msg_ids'], $datacenter); } break; case 'msg_resend_ans_req': - unset($this->datacenter->new_incoming[$current_msg_id]); - $this->send_msgs_state_info($response['msg_ids']); - foreach ($response['msg_ids'] as $msg_id) { - if (isset($this->datacenter->incoming_messages[$msg_id]) && isset($this->datacenter->outgoing_messages[$this->datacenter->incoming_messages[$msg_id]['response']])) { - $this->object_call($this->datacenter->outgoing_messages[$this->datacenter->incoming_messages[$msg_id]['response']]['method'], $this->datacenter->outgoing_messages[$this->datacenter->incoming_messages[$msg_id]['response']]['args']); + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); + $this->send_msgs_state_info($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['msg_ids'], $datacenter); + foreach ($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['msg_ids'] as $msg_id) { + if (isset($this->datacenter->sockets[$datacenter]->incoming_messages[$msg_id]) && isset($this->datacenter->sockets[$datacenter]->outgoing_messages[$this->datacenter->sockets[$datacenter]->incoming_messages[$msg_id]['response']])) { + $this->object_call($this->datacenter->sockets[$datacenter]->outgoing_messages[$this->datacenter->sockets[$datacenter]->incoming_messages[$msg_id]['response']]['method'], $this->datacenter->sockets[$datacenter]->outgoing_messages[$this->datacenter->sockets[$datacenter]->incoming_messages[$msg_id]['response']]['args'], ['datacenter' => $datacenter]); } } break; default: - $this->ack_incoming_message_id($current_msg_id); // Acknowledge that I received the server's response - $response_type = $this->constructors->find_by_predicate($response['_'])['type']; + $this->ack_incoming_message_id($current_msg_id, $datacenter); // Acknowledge that I received the server's response + $response_type = $this->constructors->find_by_predicate($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['_'])['type']; switch ($response_type) { case 'Updates': - unset($this->datacenter->new_incoming[$current_msg_id]); - $this->handle_updates($response); - $this->only_updates = true; + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); + $unset = true; + $this->handle_updates($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']); + $last_was_updates = true; break; default: \danog\MadelineProto\Logger::log(['Trying to assign a response of type '.$response_type.' to its request...'], \danog\MadelineProto\Logger::VERBOSE); - foreach ($this->datacenter->new_outgoing as $key => $expecting) { - \danog\MadelineProto\Logger::log(['Does the request of return type '.$expecting['type'].' and msg_id '.$expecting['msg_id'].' match?'], \danog\MadelineProto\Logger::VERBOSE); + foreach ($this->datacenter->sockets[$datacenter]->new_outgoing as $key => $expecting) { + \danog\MadelineProto\Logger::log(['Does the request of return type '.$expecting['type'].' match?'], \danog\MadelineProto\Logger::VERBOSE); if ($response_type === $expecting['type']) { \danog\MadelineProto\Logger::log(['Yes'], \danog\MadelineProto\Logger::VERBOSE); - $this->datacenter->outgoing_messages[$expecting['msg_id']]['response'] = $current_msg_id; - unset($this->datacenter->new_outgoing[$key]); - unset($this->datacenter->new_incoming[$current_msg_id]); + $this->datacenter->sockets[$datacenter]->outgoing_messages[$expecting['msg_id']]['response'] = $current_msg_id; + unset($this->datacenter->sockets[$datacenter]->new_outgoing[$key]); + unset($this->datacenter->sockets[$datacenter]->new_incoming[$current_msg_id]); - return; + break 2; } \danog\MadelineProto\Logger::log(['No'], \danog\MadelineProto\Logger::VERBOSE); } - throw new \danog\MadelineProto\ResponseException('Dunno how to handle '.PHP_EOL.var_export($response, true)); + throw new \danog\MadelineProto\ResponseException('Dunno how to handle '.PHP_EOL.var_export($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content'], true)); break; } break; } - if (isset($response['users'])) { - $this->add_users($response['users']); + if (isset($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['users'])) { + $this->add_users($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['users']); } - if (isset($response['chats'])) { - $this->add_chats($response['chats']); + if (isset($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['chats'])) { + $this->add_chats($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['chats']); } - if (isset($response['result']['users'])) { - $this->add_users($response['result']['users']); + if (isset($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['result']['users'])) { + $this->add_users($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['result']['users']); } - if (isset($response['result']['chats'])) { - $this->add_chats($response['result']['chats']); + if (isset($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['result']['chats'])) { + $this->add_chats($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['result']['chats']); } - if (isset($response['result']['_'])) { - switch ($this->constructors->find_by_predicate($response['result']['_'])['type']) { + if (isset($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['result']['_'])) { + switch ($this->constructors->find_by_predicate($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['result']['_'])['type']) { case 'Update': - $this->handle_update($response['result']); + $this->handle_update($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['result']); break; } } + $only_updates = ($only_updates || $first) && $last_was_updates; + $first = false; + if (isset($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['seq_no']) && ($seq_no = $this->generate_in_seq_no($datacenter, $this->content_related($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['content']['_']))) !== $this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['seq_no']) { + throw new \danog\MadelineProto\SecurityException('Seqno mismatch (should be '.$seq_no.', is '.$this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]['seq_no']); + } + if ($unset) { + unset($this->datacenter->sockets[$datacenter]->incoming_messages[$current_msg_id]); + } } + return $only_updates; } + public function handle_rpc_error($server_answer, &$datacenter) { + + switch ($server_answer['error_code']) { + case 303: + $this->datacenter->curdc = $datacenter = preg_replace('/[^0-9]+/', '', $server_answer['error_message']); + throw new \danog\MadelineProto\Exception('Received request to switch to DC '.$this->datacenter->curdc); + + case 401: + switch ($server_answer['error_message']) { + case 'USER_DEACTIVATED': + case 'SESSION_REVOKED': + case 'SESSION_EXPIRED': + $this->datacenter->sockets[$datacenter]->temp_auth_key = null; + $this->datacenter->sockets[$datacenter]->auth_key = null; + $this->authorized = false; + $this->authorization = null; + $this->init_authorization(); // idk + throw new \danog\MadelineProto\RPCErrorException($server_answer['error_message'], $server_answer['error_code']); + case 'AUTH_KEY_UNREGISTERED': + case 'AUTH_KEY_INVALID': + $this->datacenter->sockets[$datacenter]->temp_auth_key = null; + $this->init_authorization(); // idk + throw new \danog\MadelineProto\Exception($server_answer['error_message'], $server_answer['error_code']); + } + case 420: + $seconds = preg_replace('/[^0-9]+/', '', $server_answer['error_message']); + if (is_numeric($seconds) && isset($this->settings['flood_timeout']['wait_if_lt']) && $seconds < $this->settings['flood_timeout']['wait_if_lt']) { + \danog\MadelineProto\Logger::log(['Flood, waiting '.$seconds.' seconds...'], \danog\MadelineProto\Logger::NOTICE); + sleep($seconds); + throw new \danog\MadelineProto\Exception('Re-executing query...'); + } + default: + throw new \danog\MadelineProto\RPCErrorException($server_answer['error_message'], $server_answer['error_code']); + break; + } + } public function handle_pending_updates() { \danog\MadelineProto\Logger::log(['Parsing pending updates...'], \danog\MadelineProto\Logger::VERBOSE); @@ -277,7 +341,7 @@ trait ResponseHandler \danog\MadelineProto\Logger::log(['Parsing updates received via the socket...'], \danog\MadelineProto\Logger::VERBOSE); if ($this->getting_state) { \danog\MadelineProto\Logger::log(['Getting state, handle later'], \danog\MadelineProto\Logger::VERBOSE); - $this->pending_updates[] = $updates; + $this->pending_updates []= $updates; return false; } @@ -299,10 +363,10 @@ trait ResponseHandler break; case 'updateShortMessage': case 'updateShortChatMessage': - $from_id = isset($updates['from_id']) ? $updates['from_id'] : ($updates['out'] ? $this->datacenter->authorization['user']['id'] : $updates['user_id']); + $from_id = isset($updates['from_id']) ? $updates['from_id'] : ($updates['out'] ? $this->authorization['user']['id'] : $updates['user_id']); $to_id = isset($updates['chat_id']) ? -$updates['chat_id'] - : ($updates['out'] ? $updates['user_id'] : $this->datacenter->authorization['user']['id']); + : ($updates['out'] ? $updates['user_id'] : $this->authorization['user']['id']); if (!$this->peer_isset($from_id) || !$this->peer_isset($to_id) || diff --git a/src/danog/MadelineProto/MTProtoTools/SaltHandler.php b/src/danog/MadelineProto/MTProtoTools/SaltHandler.php index 8c9c5f39..7863fd87 100644 --- a/src/danog/MadelineProto/MTProtoTools/SaltHandler.php +++ b/src/danog/MadelineProto/MTProtoTools/SaltHandler.php @@ -26,8 +26,8 @@ trait SaltHandler public function add_salt($valid_since, $valid_until, $salt) { - if (!isset($this->datacenter->temp_auth_key['salts'][$salt])) { - $this->datacenter->temp_auth_key['salts'][$salt] = ['valid_since' => $valid_since, 'valid_until' => $valid_until]; + if (!isset($this->datacenter->sockets[$datacenter]->temp_auth_key['salts'][$salt])) { + $this->datacenter->sockets[$datacenter]->temp_auth_key['salts'][$salt] = ['valid_since' => $valid_since, 'valid_until' => $valid_until]; } } } diff --git a/src/danog/MadelineProto/MTProtoTools/SeqNoHandler.php b/src/danog/MadelineProto/MTProtoTools/SeqNoHandler.php index 6d4cbc19..e5eef520 100644 --- a/src/danog/MadelineProto/MTProtoTools/SeqNoHandler.php +++ b/src/danog/MadelineProto/MTProtoTools/SeqNoHandler.php @@ -17,22 +17,58 @@ namespace danog\MadelineProto\MTProtoTools; */ trait SeqNoHandler { - public function generate_seq_no($content_related = true) + public function generate_out_seq_no($datacenter, $content_related) { $in = $content_related ? 1 : 0; - $value = $this->datacenter->seq_no; - $this->datacenter->seq_no += $in; - + $value = $this->datacenter->sockets[$datacenter]->session_out_seq_no; + $this->datacenter->sockets[$datacenter]->session_out_seq_no += $in; return ($value * 2) + $in; } - public function get_in_seq_no($chat) + public function generate_in_seq_no($datacenter, $content_related) { - return count($this->secret_chats[$chat]['incoming']); + $in = $content_related ? 1 : 0; + $value = $this->datacenter->sockets[$datacenter]->session_in_seq_no; + $this->datacenter->sockets[$datacenter]->session_in_seq_no += $in; + return ($value * 2) + $in; } - public function get_out_seq_no($chat) + public function content_related($method) { - return count($this->secret_chats[$chat]['outgoing']); + return !in_array( + $method, + [ + 'rpc_result', + 'rpc_error', + 'rpc_drop_answer', + 'rpc_answer_unknown', + 'rpc_answer_dropped_running', + 'rpc_answer_dropped', + 'get_future_salts', + 'future_salt', + 'future_salts', + 'ping', + 'pong', + 'ping_delay_disconnect', + 'destroy_session', + 'destroy_session_ok', + 'destroy_session_none', +// 'new_session_created', + 'msg_container', + 'msg_copy', + 'gzip_packed', + 'http_wait', + 'msgs_ack', + 'bad_msg_notification', + 'bad_server_salt', + 'msgs_state_req', + 'msgs_state_info', + 'msgs_all_info', + 'msg_detailed_info', + 'msg_new_detailed_info', + 'msg_resend_req', + 'msg_resend_ans_req', + ] + ); } } diff --git a/src/danog/MadelineProto/MTProtoTools/UpdateHandler.php b/src/danog/MadelineProto/MTProtoTools/UpdateHandler.php index 7d6ea6b2..d6e9278c 100644 --- a/src/danog/MadelineProto/MTProtoTools/UpdateHandler.php +++ b/src/danog/MadelineProto/MTProtoTools/UpdateHandler.php @@ -142,7 +142,7 @@ trait UpdateHandler } catch (\danog\MadelineProto\RPCErrorException $e) { return false; } - $difference = $this->method_call('updates.getChannelDifference', ['channel' => $input, 'filter' => ['_' => 'channelMessagesFilterEmpty'], 'pts' => $this->get_channel_state($channel)['pts'], 'limit' => 30]); + $difference = $this->method_call('updates.getChannelDifference', ['channel' => $input, 'filter' => ['_' => 'channelMessagesFilterEmpty'], 'pts' => $this->get_channel_state($channel)['pts'], 'limit' => 30], ['datacenter' => $this->datacenter->curdc]); \danog\MadelineProto\Logger::log(['Got '.$difference['_']], \danog\MadelineProto\Logger::VERBOSE); $this->get_channel_state($channel)['sync_loading'] = false; switch ($difference['_']) { @@ -219,7 +219,7 @@ trait UpdateHandler $this->get_update_state()['pending_pts_updates'] = []; $this->get_update_state()['pending_seq_updates'] = []; } - $difference = $this->method_call('updates.getDifference', ['pts' => $this->get_update_state()['pts'], 'date' => $this->get_update_state()['date'], 'qts' => $this->get_update_state()['qts']]); + $difference = $this->method_call('updates.getDifference', ['pts' => $this->get_update_state()['pts'], 'date' => $this->get_update_state()['date'], 'qts' => $this->get_update_state()['qts']], ['datacenter' => $this->datacenter->curdc]); \danog\MadelineProto\Logger::log(['Got '.$difference['_']], \danog\MadelineProto\Logger::VERBOSE); $this->get_update_state()['sync_loading'] = false; @@ -252,7 +252,7 @@ trait UpdateHandler { $this->updates_state['sync_loading'] = false; $this->getting_state = true; - $this->set_update_state($this->method_call('updates.getState')); + $this->set_update_state($this->method_call('updates.getState', [], ['datacenter' => $this->datacenter->curdc])); $this->getting_state = false; $this->handle_pending_updates(); } @@ -345,7 +345,7 @@ trait UpdateHandler if ($update['pts'] > $new_pts) { \danog\MadelineProto\Logger::log(['Pts hole. current pts: '.$cur_state['pts'].', pts count: '.(isset($update['pts_count']) ? $update['pts_count'] : 0).', new pts: '.$new_pts.' < update pts: '.$update['pts'].', channel id: '.$channel_id], \danog\MadelineProto\Logger::ERROR); - $this->cur_state['pending_pts_updates'][] = $update; + $this->cur_state['pending_pts_updates'] = arrray_merge($this->cur_state['pending_pts_updates'], [$update]); if ($channel_id !== false && $this->peer_isset('-100'.$channel_id)) { $this->get_channel_difference($channel_id); @@ -490,6 +490,14 @@ trait UpdateHandler return; } + if ($update['_'] === 'updatePhoneCall') { + switch ($update['phone_call']['_']) { + case 'phoneCallRequested': + return $this->accept_call($update['phone_call']); + case 'phoneCall': + return $this->complete_call($update['phone_call']); + } + } if ($update['_'] === 'updateNewEncryptedMessage' && !isset($update['message']['decrypted_message'])) { $cur_state = $this->get_update_state(); if ($cur_state['qts'] === -1) { @@ -503,7 +511,6 @@ trait UpdateHandler } if ($update['qts'] > $cur_state['qts'] + 1) { \danog\MadelineProto\Logger::log(['Qts hole. update qts: '.$update['qts'].' > current qts '.$cur_state['qts'].'+1, chat id: '.$update['message']['chat_id']], \danog\MadelineProto\Logger::ERROR); - $this->get_updates_difference(); return false; @@ -554,7 +561,7 @@ trait UpdateHandler if (isset($update['message']['_']) && $update['message']['_'] === 'messageEmpty') { return; } - if (isset($update['message']['from_id']) && $update['message']['from_id'] === $this->datacenter->authorization['user']['id']) { + if (isset($update['message']['from_id']) && $update['message']['from_id'] === $this->authorization['user']['id']) { $update['message']['out'] = true; } \danog\MadelineProto\Logger::log(['Saving an update of type '.$update['_'].'...'], \danog\MadelineProto\Logger::VERBOSE); @@ -595,7 +602,7 @@ trait UpdateHandler \danog\MadelineProto\Logger::log(['Result of webhook query is '.$result], \danog\MadelineProto\Logger::NOTICE); $result = json_decode($result, true); if (is_array($result) && isset($result['method']) && $result['method'] != '' && is_string($result['method'])) { - \danog\MadelineProto\Logger::log(['Reverse webhook command returned', $this->method_call($result['method'], $result)]); + \danog\MadelineProto\Logger::log(['Reverse webhook command returned', $this->method_call($result['method'], $result, ['datacenter' => $this->datacenter->curdc])]); } } } diff --git a/src/danog/MadelineProto/RSA.php b/src/danog/MadelineProto/RSA.php index 7957d80c..e1837cf5 100644 --- a/src/danog/MadelineProto/RSA.php +++ b/src/danog/MadelineProto/RSA.php @@ -29,7 +29,7 @@ class RSA $this->keydata = ['n' => \phpseclib\Common\Functions\Objects::getVar($key, 'modulus'), 'e' => \phpseclib\Common\Functions\Objects::getVar($key, 'exponent')]; \danog\MadelineProto\Logger::log(['Computing fingerprint...'], Logger::ULTRA_VERBOSE); - $this->keydata['fp'] = \danog\PHP\Struct::unpack('keydata['fp'] = substr( sha1( $this->serialize_object( ['type' => 'bytes'], @@ -43,7 +43,7 @@ class RSA true ), -8 - ))[0]; + ); return $this->keydata; } diff --git a/src/danog/MadelineProto/SecretChats/AuthKeyHandler.php b/src/danog/MadelineProto/SecretChats/AuthKeyHandler.php new file mode 100644 index 00000000..bf114372 --- /dev/null +++ b/src/danog/MadelineProto/SecretChats/AuthKeyHandler.php @@ -0,0 +1,206 @@ +. +*/ + +namespace danog\MadelineProto\SecretChats; + +/** + * Manages secret chats. + * + * https://core.telegram.org/api/end-to-end + */ +trait AuthKeyHandler +{ + private $temp_requested_secret_chats = []; + private $secret_chats = []; + + public function accept_secret_chat($params) + { + $dh_config = $this->get_dh_config(); + \danog\MadelineProto\Logger::log(['Generating b...'], \danog\MadelineProto\Logger::VERBOSE); + $b = new \phpseclib\Math\BigInteger($this->random(256), 256); + $params['g_a'] = new \phpseclib\Math\BigInteger($params['g_a'], 256); + $this->check_G($params['g_a'], $dh_config['p']); + $key = ['auth_key' => str_pad($params['g_a']->powMod($b, $dh_config['p'])->toBytes(), 256, chr(0), \STR_PAD_LEFT)]; + $key['fingerprint'] = substr(sha1($key['auth_key'], true), -8); + $key['visualization_orig'] = substr(sha1($key['auth_key'], true), 16); + $key['visualization_46'] = substr(hash('sha256', $key['auth_key'], true), 20); + $this->secret_chats[$params['id']] = ['key' => $key, 'admin' => false, 'user_id' => $params['admin_id'], 'InputEncryptedChat' => ['_' => 'inputEncryptedChat', 'chat_id' => $params['id'], 'access_hash' => $params['access_hash']], 'in_seq_no_x' => 1, 'out_seq_no_x' => 0, 'layer' => 8, 'ttl' => PHP_INT_MAX, 'ttr' => 100, 'updated' => time(), 'incoming' => [], 'outgoing' => [], 'created' => time(), 'rekeying' => [0]]; + $g_b = $dh_config['g']->powMod($b, $dh_config['p']); + $this->check_G($g_b, $dh_config['p']); + $this->notify_layer($params['id']); + $this->handle_pending_updates(); + } + public function request_secret_chat($user) + { + $user = $this->get_info($user)['InputUser']; + \danog\MadelineProto\Logger::log(['Creating secret chat with '.$user['user_id'].'...'], \danog\MadelineProto\Logger::VERBOSE); + $dh_config = $this->get_dh_config(); + \danog\MadelineProto\Logger::log(['Generating a...'], \danog\MadelineProto\Logger::VERBOSE); + $a = new \phpseclib\Math\BigInteger($this->random(256), 256); + \danog\MadelineProto\Logger::log(['Generating g_a...'], \danog\MadelineProto\Logger::VERBOSE); + $g_a = $dh_config['g']->powMod($a, $dh_config['p']); + $this->check_G($g_a, $dh_config['p']); + $res = $this->method_call('messages.requestEncryption', ['user_id' => $user, 'g_a' => $g_a->toBytes()], ['datacenter' => $this->datacenter->curdc]); + $this->temp_requested_secret_chats[$res['id']] = $a; + $this->handle_pending_updates(); + $this->get_updates_difference(); + + return $res['id']; + } + + public function complete_secret_chat($params) + { + if ($this->secret_chat_status($params['id']) !== 1) { + \danog\MadelineProto\Logger::log(['Could not find and complete secret chat '.$params['id']]); + + return false; + } + $dh_config = $this->get_dh_config(); + $params['g_a_or_b'] = new \phpseclib\Math\BigInteger($params['g_a_or_b'], 256); + $this->check_G($params['g_a_or_b'], $dh_config['p']); + $key = ['auth_key' => str_pad($params['g_a_or_b']->powMod($this->temp_requested_secret_chats[$params['id']], $dh_config['p'])->toBytes(), 256, chr(0), \STR_PAD_LEFT)]; + unset($this->temp_requested_secret_chats[$params['id']]); + $key['fingerprint'] = substr(sha1($key['auth_key'], true), -8); + + if ($key['fingerprint'] !== $params['key_fingerprint']) { + $this->method_call('messages.discardEncryption', ['chat_id' => $params['id']], ['datacenter' => $this->datacenter->curdc]); + throw new \danog\MadelineProto\SecurityException('Invalid key fingerprint!'); + } + $key['visualization_orig'] = substr(sha1($key['auth_key'], true), 16); + $key['visualization_46'] = substr(hash('sha256', $key['auth_key'], true), 20); + $this->secret_chats[$params['id']] = ['key' => $key, 'admin' => true, 'user_id' => $params['participant_id'], 'InputEncryptedChat' => ['chat_id' => $params['id'], 'access_hash' => $params['access_hash'], '_' => 'inputEncryptedChat'], 'in_seq_no_x' => 0, 'out_seq_no_x' => 1, 'layer' => 8, 'ttl' => PHP_INT_MAX, 'ttr' => 100, 'updated' => time(), 'incoming' => [], 'outgoing' => [], 'created' => time(), 'rekeying' => [0]]; + $this->notify_layer($params['id']); + $this->handle_pending_updates(); + } + + + public function notify_layer($chat) + { + $this->method_call('messages.sendEncryptedService', ['peer' => $chat, 'message' => ['_' => 'decryptedMessageService', 'action' => ['_' => 'decryptedMessageActionNotifyLayer', 'layer' => $this->encrypted_layer]]], ['datacenter' => $this->datacenter->curdc]); + } + + private $temp_rekeyed_secret_chats = []; + + public function rekey($chat) + { + if ($this->secret_chats[$chat]['rekeying'][0] !== 0) { + return; + } + \danog\MadelineProto\Logger::log(['Rekeying secret chat '.$chat.'...'], \danog\MadelineProto\Logger::VERBOSE); + $dh_config = $this->get_dh_config(); + \danog\MadelineProto\Logger::log(['Generating a...'], \danog\MadelineProto\Logger::VERBOSE); + $a = new \phpseclib\Math\BigInteger($this->random(256), 256); + \danog\MadelineProto\Logger::log(['Generating g_a...'], \danog\MadelineProto\Logger::VERBOSE); + $g_a = $dh_config['g']->powMod($a, $dh_config['p']); + $this->check_G($g_a, $dh_config['p']); + $e = $this->random(8); + $this->method_call('messages.sendEncryptedService', ['peer' => $chat, 'message' => ['_' => 'decryptedMessageService', 'action' => ['_' => 'decryptedMessageActionRequestKey', 'g_a' => $g_a->toBytes(), 'exchange_id' => $e]]], ['datacenter' => $this->datacenter->curdc]); + $this->temp_rekeyed_secret_chats[$e] = $a; + $this->secret_chats[$chat]['rekeying'] = [1, $e]; + $this->handle_pending_updates(); + $this->get_updates_difference(); + + return $e; + } + + public function accept_rekey($chat, $params) + { + if ($this->secret_chats[$chat]['rekeying'][0] !== 0) { + $my = $this->temp_rekeyed_secret_chats[$this->secret_chats[$chat]['rekeying'][1]]; + if ($my['exchange_id'] > $params['exchange_id']) { + return; + } + if ($my['exchange_id'] === $params['exchange_id']) { + $this->secret_chats[$chat]['rekeying'] = [0]; + $this->rekey($chat); + + return; + } + } + \danog\MadelineProto\Logger::log(['Accepting rekeying of secret chat '.$chat.'...'], \danog\MadelineProto\Logger::VERBOSE); + $dh_config = $this->get_dh_config(); + \danog\MadelineProto\Logger::log(['Generating b...'], \danog\MadelineProto\Logger::VERBOSE); + $b = new \phpseclib\Math\BigInteger($this->random(256), 256); + $params['g_a'] = new \phpseclib\Math\BigInteger($params['g_a'], 256); + $this->check_G($params['g_a'], $dh_config['p']); + $key = ['auth_key' => str_pad($params['g_a']->powMod($b, $dh_config['p'])->toBytes(), 256, chr(0), \STR_PAD_LEFT)]; + $key['fingerprint'] = substr(sha1($key['auth_key'], true), -8); + + $key['visualization_orig'] = $this->secret_chats[$chat]['key']['visualization_orig']; + $key['visualization_46'] = substr(hash('sha256', $key['auth_key'], true), 20); + $this->temp_rekeyed_secret_chats[$params['exchange_id']] = $key; + $this->secret_chats[$chat]['rekeying'] = [2, $params['exchange_id']]; + $g_b = $dh_config['g']->powMod($b, $dh_config['p']); + $this->check_G($g_b, $dh_config['p']); + $this->method_call('messages.sendEncryptedService', ['peer' => $chat, 'message' => ['_' => 'decryptedMessageService', 'action' => ['_' => 'decryptedMessageActionAcceptKey', 'g_b' => $g_b->toBytes(), 'exchange_id' => $params['exchange_id'], 'key_fingerprint' => $key['fingerprint']]]], ['datacenter' => $this->datacenter->curdc]); + $this->handle_pending_updates(); + $this->get_updates_difference(); + } + + public function commit_rekey($chat, $params) + { + if ($this->secret_chats[$chat]['rekeying'][0] !== 1) { + return; + } + \danog\MadelineProto\Logger::log(['Committing rekeying of secret chat '.$chat.'...'], \danog\MadelineProto\Logger::VERBOSE); + $dh_config = $this->get_dh_config(); + $params['g_b'] = new \phpseclib\Math\BigInteger($params['g_b'], 256); + $this->check_G($params['g_b'], $dh_config['p']); + $key = ['auth_key' => str_pad($params['g_b']->powMod($this->temp_rekeyed_secret_chats[$params['exchange_id']], $dh_config['p'])->toBytes(), 256, chr(0), \STR_PAD_LEFT)]; + $key['fingerprint'] = substr(sha1($key['auth_key'], true), -8); + $key['visualization_orig'] = $this->secret_chats[$chat]['key']['visualization_orig']; + $key['visualization_46'] = substr(hash('sha256', $key['auth_key'], true), 20); + if ($key['fingerprint'] !== $params['key_fingerprint']) { + $this->method_call('messages.sendEncryptedService', ['peer' => $chat, 'message' => ['_' => 'decryptedMessageService', 'action' => ['_' => 'decryptedMessageActionAbortKey', 'exchange_id' => $params['exchange_id']]]], ['datacenter' => $this->datacenter->curdc]); + throw new \danog\MadelineProto\SecurityException('Invalid key fingerprint!'); + } + $this->method_call('messages.sendEncryptedService', ['peer' => $chat, 'message' => ['_' => 'decryptedMessageService', 'action' => ['_' => 'decryptedMessageActionCommitKey', 'exchange_id' => $params['exchange_id'], 'key_fingerprint' => $key['fingerprint']]]], ['datacenter' => $this->datacenter->curdc]); + unset($this->temp_rekeyed_secret_chats[$chat]); + $this->secret_chats[$chat]['rekeying'] = [0]; + $this->secret_chats[$chat]['key'] = $key; + $this->secret_chats[$chat]['ttr'] = 100; + $this->secret_chats[$chat]['updated'] = time(); + + $this->handle_pending_updates(); + $this->get_updates_difference(); + } + + public function complete_rekey($chat, $params) + { + if ($this->secret_chats[$chat]['rekeying'][0] !== 2) { + return; + } + if ($this->temp_rekeyed_secret_chats['fingerprint'] !== $params['key_fingerprint']) { + $this->method_call('messages.sendEncryptedService', ['peer' => $chat, 'message' => ['_' => 'decryptedMessageService', 'action' => ['_' => 'decryptedMessageActionAbortKey', 'exchange_id' => $params['exchange_id']]]], ['datacenter' => $this->datacenter->curdc]); + throw new \danog\MadelineProto\SecurityException('Invalid key fingerprint!'); + } + \danog\MadelineProto\Logger::log(['Completing rekeying of secret chat '.$chat.'...'], \danog\MadelineProto\Logger::VERBOSE); + $this->secret_chats[$chat]['rekeying'] = [0]; + $this->secret_chats[$chat]['key'] = $this->temp_rekeyed_secret_chats; + $this->secret_chats[$chat]['ttr'] = 100; + $this->secret_chats[$chat]['updated'] = time(); + unset($this->temp_rekeyed_secret_chats[$params['exchange_id']]); + $this->method_call('messages.sendEncryptedService', ['peer' => $chat, 'message' => ['_' => 'decryptedMessageService', 'action' => ['_' => 'decryptedMessageActionNoop']]], ['datacenter' => $this->datacenter->curdc]); + } + + public function secret_chat_status($chat) + { + if (isset($this->secret_chats[$chat])) { + return 2; + } + if (isset($this->temp_requested_secret_chats[$chat])) { + return 1; + } + + return 0; + } +} diff --git a/src/danog/MadelineProto/SecretChats/MessageHandler.php b/src/danog/MadelineProto/SecretChats/MessageHandler.php new file mode 100644 index 00000000..4ee19dd2 --- /dev/null +++ b/src/danog/MadelineProto/SecretChats/MessageHandler.php @@ -0,0 +1,86 @@ +. +*/ + +namespace danog\MadelineProto\SecretChats; + +/** + * Manages packing and unpacking of messages, and the list of sent and received messages. + */ +trait MessageHandler +{ + public function encrypt_secret_message($chat_id, $message) + { + if (!isset($this->secret_chats[$chat_id])) { + \danog\MadelineProto\Logger::log('I do not have the secret chat '.$chat_id.' in the database, skipping message...'); + + return false; + } + $message = $this->serialize_object(['type' => $message['_']], $message, $this->secret_chats[$chat_id]['layer']); + $this->secret_chats[$chat_id]['outgoing'] []= $message; + $this->secret_chats[$chat_id]['ttr']--; + if (($this->secret_chats[$chat_id]['ttr'] <= 0 || time() - $this->secret_chats[$chat_id]['updated'] > 7 * 24 * 60 * 60) && $this->secret_chats[$chat_id]['rekeying'] === 0) { + $this->rekey($chat_id); + } + + $message = \danog\PHP\Struct::pack('aes_calculate($message_key, $this->secret_chats[$chat_id]['key']['auth_key'], 'to server'); + $padding = $this->random($this->posmod(-strlen($message), 16)); + $message = $this->secret_chats[$chat_id]['key']['fingerprint'].$message_key.$this->ige_encrypt($message.$padding, $aes_key, $aes_iv); + + return $message; + } + + public function handle_encrypted_update($message) + { + if (!isset($this->secret_chats[$message['message']['chat_id']])) { + \danog\MadelineProto\Logger::log('I do not have the secret chat '.$message['message']['chat_id'].' in the database, skipping message...'); + + return false; + } + $auth_key_id = substr($message['message']['bytes'], 0, 8); + if ($auth_key_id !== $this->secret_chats[$message['message']['chat_id']]['key']['fingerprint']) { + throw new \danog\MadelineProto\SecurityException('Key fingerprint mismatch'); + } + $message_key = substr($message['message']['bytes'], 8, 16); + $encrypted_data = substr($message['message']['bytes'], 24); + list($aes_key, $aes_iv) = $this->aes_calculate($message_key, $this->secret_chats[$message['message']['chat_id']]['key']['auth_key'], 'to server'); + $decrypted_data = $this->ige_decrypt($encrypted_data, $aes_key, $aes_iv); + $message_data_length = \danog\PHP\Struct::unpack(' strlen($decrypted_data)) { + throw new \danog\MadelineProto\SecurityException('message_data_length is too big'); + } + + if ((strlen($decrypted_data) - 4) - $message_data_length > 15) { + throw new \danog\MadelineProto\SecurityException('difference between message_data_length and the length of the remaining decrypted buffer is too big'); + } + + if ($message_data_length % 4 != 0) { + throw new \danog\MadelineProto\SecurityException('message_data_length not divisible by 4'); + } + $message_data = substr($decrypted_data, 4, $message_data_length); + if ($message_key != substr(sha1(substr($decrypted_data, 0, 4 + $message_data_length), true), -16)) { + throw new \danog\MadelineProto\SecurityException('msg_key mismatch'); + } + $deserialized = $this->deserialize($message_data, ['type' => '']); + if (strlen($deserialized['random_bytes']) < 15) { + throw new \danog\MadelineProto\SecurityException('random_bytes is too short'); + } + $this->secret_chats[$message['message']['chat_id']]['ttr']--; + if (($this->secret_chats[$message['message']['chat_id']]['ttr'] <= 0 || time() - $this->secret_chats[$message['message']['chat_id']]['updated'] > 7 * 24 * 60 * 60) && $this->secret_chats[$message['message']['chat_id']]['rekeying'] === 0) { + $this->rekey($message['message']['chat_id']); + } + unset($message['message']['bytes']); + $message['message']['decrypted_message'] = $deserialized; + $this->handle_decrypted_update($message); + } +} diff --git a/src/danog/MadelineProto/Conversion/BotAPI.php b/src/danog/MadelineProto/TL/Conversion/BotAPI.php similarity index 99% rename from src/danog/MadelineProto/Conversion/BotAPI.php rename to src/danog/MadelineProto/TL/Conversion/BotAPI.php index e45b1b32..2161156f 100644 --- a/src/danog/MadelineProto/Conversion/BotAPI.php +++ b/src/danog/MadelineProto/TL/Conversion/BotAPI.php @@ -10,7 +10,7 @@ You should have received a copy of the GNU General Public License along with Mad If not, see . */ -namespace danog\MadelineProto\Conversion; +namespace danog\MadelineProto\TL\Conversion; trait BotAPI { @@ -106,7 +106,7 @@ trait BotAPI $newd['date'] = $data['date']; $newd['text'] = $sent_arguments['message']; if ($data['out']) { - $newd['from'] = $this->get_pwr_chat($this->datacenter->authorization['user']); + $newd['from'] = $this->get_pwr_chat($this->authorization['user']); } $newd['chat'] = $this->get_pwr_chat($sent_arguments['peer']); if (isset($data['entities'])) { diff --git a/src/danog/MadelineProto/Conversion/BotAPIFiles.php b/src/danog/MadelineProto/TL/Conversion/BotAPIFiles.php similarity index 99% rename from src/danog/MadelineProto/Conversion/BotAPIFiles.php rename to src/danog/MadelineProto/TL/Conversion/BotAPIFiles.php index fa7f6849..3948b063 100644 --- a/src/danog/MadelineProto/Conversion/BotAPIFiles.php +++ b/src/danog/MadelineProto/TL/Conversion/BotAPIFiles.php @@ -10,7 +10,7 @@ You should have received a copy of the GNU General Public License along with Mad If not, see . */ -namespace danog\MadelineProto\Conversion; +namespace danog\MadelineProto\TL\Conversion; trait BotAPIFiles { diff --git a/src/danog/MadelineProto/Conversion/Exception.php b/src/danog/MadelineProto/TL/Conversion/Exception.php similarity index 94% rename from src/danog/MadelineProto/Conversion/Exception.php rename to src/danog/MadelineProto/TL/Conversion/Exception.php index 27ead422..2f2ba6b8 100644 --- a/src/danog/MadelineProto/Conversion/Exception.php +++ b/src/danog/MadelineProto/TL/Conversion/Exception.php @@ -10,7 +10,7 @@ You should have received a copy of the GNU General Public License along with Mad If not, see . */ -namespace danog\MadelineProto\Conversion; +namespace danog\MadelineProto\TL\Conversion; class Exception extends \Exception { diff --git a/src/danog/MadelineProto/Conversion/Extension.php b/src/danog/MadelineProto/TL/Conversion/Extension.php similarity index 99% rename from src/danog/MadelineProto/Conversion/Extension.php rename to src/danog/MadelineProto/TL/Conversion/Extension.php index 00e94189..09dc5ab3 100644 --- a/src/danog/MadelineProto/Conversion/Extension.php +++ b/src/danog/MadelineProto/TL/Conversion/Extension.php @@ -12,7 +12,7 @@ You should have received a copy of the GNU General Public License along with Mad If not, see . */ -namespace danog\MadelineProto\Conversion; +namespace danog\MadelineProto\TL\Conversion; /** * Manages generation of extensions for files. diff --git a/src/danog/MadelineProto/Conversion/TD.php b/src/danog/MadelineProto/TL/Conversion/TD.php similarity index 97% rename from src/danog/MadelineProto/Conversion/TD.php rename to src/danog/MadelineProto/TL/Conversion/TD.php index a7a8574e..ccab9e4b 100644 --- a/src/danog/MadelineProto/Conversion/TD.php +++ b/src/danog/MadelineProto/TL/Conversion/TD.php @@ -10,7 +10,7 @@ You should have received a copy of the GNU General Public License along with Mad If not, see . */ -namespace danog\MadelineProto\Conversion; +namespace danog\MadelineProto\TL\Conversion; trait TD { @@ -135,7 +135,7 @@ trait TD } else { switch (end($mtproto)) { case 'choose_chat_id_from_botapi': - $newparams[$td] = ($this->get_info($params[$mtproto[0]])['bot_api_id'] == $this->datacenter->authorization['user']['id']) ? $params['from_id'] : $this->get_info($params[$mtproto[0]])['bot_api_id']; + $newparams[$td] = ($this->get_info($params[$mtproto[0]])['bot_api_id'] == $this->authorization['user']['id']) ? $params['from_id'] : $this->get_info($params[$mtproto[0]])['bot_api_id']; break; case 'choose_incoming_or_sent': $newparams[$td] = ['_' => $params['out'] ? 'messageIsSuccessfullySent' : 'messageIsIncoming']; diff --git a/src/danog/MadelineProto/TL/TL.php b/src/danog/MadelineProto/TL/TL.php index b301dca3..d4a8c61c 100644 --- a/src/danog/MadelineProto/TL/TL.php +++ b/src/danog/MadelineProto/TL/TL.php @@ -236,6 +236,17 @@ trait TL return \danog\PHP\Struct::pack('toBytes()), 8, chr(0)); + } + + if (is_string($object)) { + if (strlen($object) !== 8) { + throw new Exception('Given value is not 8 bytes long'); + } + return $object; + } + if (!is_numeric($object)) { throw new Exception('given value ('.$object.") isn't numeric"); } @@ -437,7 +448,7 @@ trait TL case '#': return \danog\PHP\Struct::unpack('read(4))[0]; case 'long': - return \danog\PHP\Struct::unpack('read(8))[0]; + return $this->bigint || isset($type['strlong']) ? $bytes_io->read(8) : \danog\PHP\Struct::unpack('read(8))[0]; case 'double': return \danog\PHP\Struct::unpack('read(8))[0]; case 'int128': @@ -457,13 +468,13 @@ trait TL $x = $bytes_io->read($long_len); $resto = $this->posmod(-$long_len, 4); if ($resto > 0) { - $bytes_io->read($resto); + $bytes_io->pos += $resto; } } else { $x = $bytes_io->read($l); $resto = $this->posmod(-($l + 1), 4); if ($resto > 0) { - $bytes_io->read($resto); + $bytes_io->pos += $resto; } } if (!is_string($x)) { @@ -491,8 +502,9 @@ trait TL case 'vector': $count = \danog\PHP\Struct::unpack('read(4))[0]; $result = []; + $type['type'] = $type['subtype']; for ($i = 0; $i < $count; $i++) { - $result[] = $this->deserialize($bytes_io, ['type' => $type['subtype']]); + $result[] = $this->deserialize($bytes_io, $type); } return $result; @@ -538,6 +550,9 @@ trait TL break; } } + if (in_array($arg['name'], ['msg_ids', 'msg_id', 'bad_msg_id', 'req_msg_id', 'answer_msg_id', 'first_msg_id', 'key_fingerprint', 'server_salt', 'new_server_salt'])) { + $arg['strlong'] = true; + } $x[$arg['name']] = $this->deserialize($bytes_io, $arg); } if (isset($x['flags'])) { // I don't think we need this anymore @@ -547,42 +562,4 @@ trait TL return $x; } - public function content_related($method) - { - return !in_array( - $method, - [ - 'rpc_result', - 'rpc_error', - 'rpc_drop_answer', - 'rpc_answer_unknown', - 'rpc_answer_dropped_running', - 'rpc_answer_dropped', - 'get_future_salts', - 'future_salt', - 'future_salts', - 'ping', - 'pong', - 'ping_delay_disconnect', - 'destroy_session', - 'destroy_session_ok', - 'destroy_session_none', - 'new_session_created', - 'msg_container', - 'msg_copy', - 'gzip_packed', - 'http_wait', - 'msgs_ack', - 'bad_msg_notification', - 'bad_server_salt', - 'msgs_state_req', - 'msgs_state_info', - 'msgs_all_info', - 'msg_detailed_info', - 'msg_new_detailed_info', - 'msg_resend_req', - 'msg_resend_ans_req', - ] - ); - } } diff --git a/src/danog/MadelineProto/Threads/SocketHandler.php b/src/danog/MadelineProto/Threads/SocketHandler.php index 82bdc791..393daba2 100644 --- a/src/danog/MadelineProto/Threads/SocketHandler.php +++ b/src/danog/MadelineProto/Threads/SocketHandler.php @@ -15,13 +15,12 @@ namespace danog\MadelineProto\Threads; /** * Manages packing and unpacking of messages, and the list of sent and received messages. */ -class SocketHandler extends Threaded +class SocketHandler extends \Threaded implements \Collectable { - public $payloads = []; - - public function __construct(&$me) + public function __construct(&$me, $current) { $this->API = $me; + $this->current = $current; } /** @@ -29,86 +28,22 @@ class SocketHandler extends Threaded */ public function run() { - $this->socket_handler->synchronized(function ($thread) { - if (empty($thread->payloads)) { - $thread->wait(); - } else { - foreach ($thread->payloads as $payload) { - if (fstat($payload)['size'] === 4) { - $error = \danog\PHP\Struct::unpack('API->datacenter->temp_auth_key != null) { - \danog\MadelineProto\Logger::log(['WARNING: Resetting auth key...'], \danog\MadelineProto\Logger::WARNING); - $thread->API->datacenter->temp_auth_key = null; - $thread->API->init_authorization(); - $thread->API->config = $thread->API->write_client_info('help.getConfig'); - $thread->API->parse_config(); - continue; - //throw new \danog\MadelineProto\Exception('I had to recreate the temporary authorization key'); - } - } - throw new \danog\MadelineProto\RPCErrorException($error, $error); - } - $auth_key_id = stream_get_contents($payload, 8); - if ($auth_key_id === str_repeat(chr(0), 8)) { - list($message_id, $message_length) = \danog\PHP\Struct::unpack('API->check_message_id($message_id, false); - $message_data = stream_get_contents($payload, $message_length); - } elseif ($auth_key_id === $thread->API->datacenter->temp_auth_key['id']) { - $message_key = stream_get_contents($payload, 16); - $encrypted_data = stream_get_contents($payload); - list($aes_key, $aes_iv) = $thread->API->aes_calculate($message_key, $thread->API->datacenter->temp_auth_key['auth_key'], 'from server'); - $decrypted_data = $thread->API->ige_decrypt($encrypted_data, $aes_key, $aes_iv); - - $server_salt = \danog\PHP\Struct::unpack('API->datacenter->temp_auth_key['server_salt']) { - //\danog\MadelineProto\Logger::log(['WARNING: Server salt mismatch (my server salt '.$thread->API->datacenter->temp_auth_key['server_salt'].' is not equal to server server salt '.$server_salt.').'], \danog\MadelineProto\Logger::WARNING); - } - - $session_id = substr($decrypted_data, 8, 8); - if ($session_id != $thread->API->datacenter->session_id) { - throw new \danog\MadelineProto\Exception('Session id mismatch.'); - } - - $message_id = \danog\PHP\Struct::unpack('API->check_message_id($message_id, false); - - $seq_no = \danog\PHP\Struct::unpack(' strlen($decrypted_data)) { - throw new \danog\MadelineProto\Exception('message_data_length is too big'); - } - - if ((strlen($decrypted_data) - 32) - $message_data_length > 15) { - throw new \danog\MadelineProto\Exception('difference between message_data_length and the length of the remaining decrypted buffer is too big'); - } - - if ($message_data_length < 0) { - throw new \danog\MadelineProto\Exception('message_data_length not positive'); - } - - if ($message_data_length % 4 != 0) { - throw new \danog\MadelineProto\Exception('message_data_length not divisible by 4'); - } - - $message_data = substr($decrypted_data, 32, $message_data_length); - if ($message_key != substr(sha1(substr($decrypted_data, 0, 32 + $message_data_length), true), -16)) { - throw new \danog\MadelineProto\Exception('msg_key mismatch'); - } - $thread->API->datacenter->incoming_messages[$message_id]['seq_no'] = $seq_no; - } else { - throw new \danog\MadelineProto\Exception('Got unknown auth_key id'); - } - $deserialized = $thread->API->deserialize($message_data); - $thread->API->datacenter->incoming_messages[$message_id]['content'] = $deserialized; - $thread->API->datacenter->incoming_messages[$message_id]['response'] = -1; - $thread->API->datacenter->new_incoming[$message_id] = $message_id; - $thread->API->handle_messages(); - } - } - }, $this); + require_once(__DIR__.'/../SecurityException.php'); + require_once(__DIR__.'/../RPCErrorException.php'); + require_once(__DIR__.'/../ResponseException.php'); + require_once(__DIR__.'/../TL/Conversion/Exception.php'); + require_once(__DIR__.'/../TL/Exception.php'); + require_once(__DIR__.'/../NothingInTheSocketException.php'); + require_once(__DIR__.'/../Exception.php'); + $this->API->handle_messages($current); + $this->setGarbage(); + } + + private $garbage = false; + public function setGarbage():void { + $this->garbage = true; + } + public function isGarbage():bool { + return $this->garbage; } } diff --git a/src/danog/MadelineProto/Threads/SocketReader.php b/src/danog/MadelineProto/Threads/SocketReader.php index c49ed227..2e42b3d5 100644 --- a/src/danog/MadelineProto/Threads/SocketReader.php +++ b/src/danog/MadelineProto/Threads/SocketReader.php @@ -15,25 +15,52 @@ namespace danog\MadelineProto\Threads; /** * Manages packing and unpacking of messages, and the list of sent and received messages. */ -class SocketReader extends Threaded +class SocketReader extends \Threaded implements \Collectable { - public function __construct(&$me) + public function __construct($me, $current) { $this->API = $me; + $this->current = $current; + + } + public function __sleep() { + return ['current', 'API', 'garbage']; + } + public function __destruct() { + \danog\MadelineProto\Logger::log(['Shutting down handler pool for DC '.$this->current], \danog\MadelineProto\Logger::NOTICE); + if (isset($this->handler_pool)) $this->handler_pool->shutdown(); } - /** * Reading connection and receiving message from server. Check the CRC32. */ public function run() { - try { - $payload = $this->API->datacenter->read_message(); - $this->socket_handler->synchronized(function ($thread, $payload) { - $thread->payloads[] = $payload; - $thread->notify(); - }, $this->API->socket_handler, $payload); - } catch (\danog\MadelineProto\NothingInTheSocketException $e) { + require_once(__DIR__.'/../SecurityException.php'); + require_once(__DIR__.'/../RPCErrorException.php'); + require_once(__DIR__.'/../ResponseException.php'); + require_once(__DIR__.'/../TL/Conversion/Exception.php'); + require_once(__DIR__.'/../TL/Exception.php'); + require_once(__DIR__.'/../NothingInTheSocketException.php'); + require_once(__DIR__.'/../Exception.php'); +var_dump($this->API->settings['threading']); + if (!isset($this->handler_pool)) $this->handler_pool = new \Pool(2); + +var_dump($this->API->settings['threading']); + + while ($this->API->run_workers) { + try { + $this->API->recv_message($this->current); + $this->handler_pool->submit(new SocketHandler($this->API, $this->current)); + } catch (\danog\MadelineProto\NothingInTheSocketException $e) { ; } } + $this->setGarbage(); + } + + public $garbage = false; + public function setGarbage():void { + $this->garbage = true; + } + public function isGarbage():bool { + return $this->garbage; } } diff --git a/src/danog/MadelineProto/Wrappers/Login.php b/src/danog/MadelineProto/Wrappers/Login.php index e5210de7..d9babe1b 100644 --- a/src/danog/MadelineProto/Wrappers/Login.php +++ b/src/danog/MadelineProto/Wrappers/Login.php @@ -19,11 +19,11 @@ trait Login { public function logout() { - if (!$this->API->method_call('auth.logOut')) { + if (!$this->API->method_call('auth.logOut', [], ['datacenter' => $this->API->datacenter->curdc])) { throw new \danog\MadelineProto\Exception('An error occurred while logging out!'); } - $this->API->datacenter->authorized = false; - $this->API->datacenter->authorization = null; + $this->API->authorized = false; + $this->API->authorization = null; $this->API->updates = []; \danog\MadelineProto\Logger::log(['Logged out successfully!'], \danog\MadelineProto\Logger::NOTICE); @@ -34,20 +34,21 @@ trait Login public function bot_login($token) { - if ($this->API->datacenter->authorized) { + if ($this->API->authorized) { \danog\MadelineProto\Logger::log(['This instance of MadelineProto is already logged in. Logging out first...'], \danog\MadelineProto\Logger::NOTICE); $this->logout(); } \danog\MadelineProto\Logger::log(['Logging in as a bot...'], \danog\MadelineProto\Logger::NOTICE); - $this->API->datacenter->authorization = $this->API->method_call( + $this->API->authorization = $this->API->method_call( 'auth.importBotAuthorization', [ 'bot_auth_token' => $token, 'api_id' => $this->API->settings['app_info']['api_id'], 'api_hash' => $this->API->settings['app_info']['api_hash'], - ] + ], ['datacenter' => $this->API->datacenter->curdc] ); - $this->API->datacenter->authorized = true; + $this->API->authorized = true; + $this->API->sync_authorization($this->API->datacenter->cur_dc); $this->API->updates = []; $this->API->updates_key = 0; $this->API->get_updates_state(); @@ -60,17 +61,17 @@ trait Login } \danog\MadelineProto\Logger::log(['Logged in successfully!'], \danog\MadelineProto\Logger::NOTICE); - return $this->API->datacenter->authorization; + return $this->API->authorization; } public function phone_login($number, $sms_type = 5) { - if ($this->API->datacenter->authorized) { + if ($this->API->authorized) { \danog\MadelineProto\Logger::log(['This instance of MadelineProto is already logged in. Logging out first...'], \danog\MadelineProto\Logger::NOTICE); $this->logout(); } \danog\MadelineProto\Logger::log(['Sending code...'], \danog\MadelineProto\Logger::NOTICE); - $this->API->datacenter->authorization = $this->API->method_call( + $this->API->authorization = $this->API->method_call( 'auth.sendCode', [ 'phone_number' => $number, @@ -78,107 +79,110 @@ trait Login 'api_id' => $this->API->settings['app_info']['api_id'], 'api_hash' => $this->API->settings['app_info']['api_hash'], 'lang_code' => $this->API->settings['app_info']['lang_code'], - ] + ], ['datacenter' => $this->API->datacenter->curdc] ); - $this->API->datacenter->authorization['phone_number'] = $number; - $this->API->datacenter->login_temp_status = 'waiting_code'; + $this->API->authorization['phone_number'] = $number; + $this->API->login_temp_status = 'waiting_code'; $this->API->should_serialize = true; $this->API->updates = []; $this->API->updates_key = 0; \danog\MadelineProto\Logger::log(['Code sent successfully! Once you receive the code you should use the complete_phone_login function.'], \danog\MadelineProto\Logger::NOTICE); - return $this->API->datacenter->authorization; + return $this->API->authorization; } public function complete_phone_login($code) { - if ($this->API->datacenter->login_temp_status !== 'waiting_code') { + if ($this->API->login_temp_status !== 'waiting_code') { throw new \danog\MadelineProto\Exception("I'm not waiting for the code! Please call the phone_login method first"); } - $this->API->datacenter->login_temp_status = 'none'; + $this->API->login_temp_status = 'none'; \danog\MadelineProto\Logger::log(['Logging in as a normal user...'], \danog\MadelineProto\Logger::NOTICE); try { $authorization = $this->API->method_call( 'auth.signIn', [ - 'phone_number' => $this->API->datacenter->authorization['phone_number'], - 'phone_code_hash' => $this->API->datacenter->authorization['phone_code_hash'], + 'phone_number' => $this->API->authorization['phone_number'], + 'phone_code_hash' => $this->API->authorization['phone_code_hash'], 'phone_code' => $code, - ] + ], ['datacenter' => $this->API->datacenter->curdc] ); } catch (\danog\MadelineProto\RPCErrorException $e) { if ($e->getMessage() === 'SESSION_PASSWORD_NEEDED') { \danog\MadelineProto\Logger::log(['2FA enabled, you will have to call the complete_2fa_login function...'], \danog\MadelineProto\Logger::NOTICE); - $this->API->datacenter->login_temp_status = 'waiting_password'; + $this->API->login_temp_status = 'waiting_password'; $this->API->should_serialize = true; - return $this->API->datacenter->authorization = $this->account->getPassword(); + return $this->API->authorization = $this->account->getPassword(); } if ($e->getMessage() === 'PHONE_NUMBER_UNOCCUPIED') { \danog\MadelineProto\Logger::log(['An account has not been created for this number, you will have to call the complete_signup function...'], \danog\MadelineProto\Logger::NOTICE); - $this->API->datacenter->login_temp_status = 'waiting_signup'; + $this->API->login_temp_status = 'waiting_signup'; $this->API->should_serialize = true; - $this->API->datacenter->authorization['phone_code'] = $code; + $this->API->authorization['phone_code'] = $code; return ['_' => 'account.needSignup']; } throw $e; } - $this->API->datacenter->authorization = $authorization; - $this->API->datacenter->authorized = true; + $this->API->authorization = $authorization; + $this->API->authorized = true; + $this->API->sync_authorization($this->API->datacenter->cur_dc); $this->API->get_updates_state(); $this->API->should_serialize = true; \danog\MadelineProto\Logger::log(['Logged in successfully!'], \danog\MadelineProto\Logger::NOTICE); - return $this->API->datacenter->authorization; + return $this->API->authorization; } public function complete_signup($first_name, $last_name) { - if ($this->API->datacenter->login_temp_status !== 'waiting_signup') { + if ($this->API->login_temp_status !== 'waiting_signup') { throw new \danog\MadelineProto\Exception("I'm not waiting for the password! Please call the phone_login and the complete_phone_login methods first!"); } - $this->API->datacenter->login_temp_status = 'none'; + $this->API->login_temp_status = 'none'; \danog\MadelineProto\Logger::log(['Signing up as a normal user...'], \danog\MadelineProto\Logger::NOTICE); - $this->API->datacenter->authorization = $this->API->method_call( + $this->API->authorization = $this->API->method_call( 'auth.signUp', [ - 'phone_number' => $this->API->datacenter->authorization['phone_number'], - 'phone_code_hash' => $this->API->datacenter->authorization['phone_code_hash'], - 'phone_code' => $this->API->datacenter->authorization['phone_code'], + 'phone_number' => $this->API->authorization['phone_number'], + 'phone_code_hash' => $this->API->authorization['phone_code_hash'], + 'phone_code' => $this->API->authorization['phone_code'], 'first_name' => $first_name, 'last_name' => $last_name, - ] + ], ['datacenter' => $this->API->datacenter->curdc] ); - $this->API->datacenter->authorized = true; + $this->API->authorized = true; + $this->API->sync_authorization($this->API->datacenter->cur_dc); $this->API->get_updates_state(); $this->API->should_serialize = true; \danog\MadelineProto\Logger::log(['Signed up in successfully!'], \danog\MadelineProto\Logger::NOTICE); - return $this->API->datacenter->authorization; + return $this->API->authorization; } public function complete_2fa_login($password) { - if ($this->API->datacenter->login_temp_status !== 'waiting_password') { + if ($this->API->login_temp_status !== 'waiting_password') { throw new \danog\MadelineProto\Exception("I'm not waiting for the password! Please call the phone_login and the complete_phone_login methods first!"); } - $this->API->datacenter->login_temp_status = 'none'; + $this->API->login_temp_status = 'none'; \danog\MadelineProto\Logger::log(['Logging in as a normal user...'], \danog\MadelineProto\Logger::NOTICE); - $this->API->datacenter->authorization = $this->API->method_call( + $this->API->authorization = $this->API->method_call( 'auth.checkPassword', [ - 'password_hash' => hash('sha256', $this->API->datacenter->authorization['current_salt'].$password.$this->API->datacenter->authorization['current_salt'], true), - ] + 'password_hash' => hash('sha256', $this->API->authorization['current_salt'].$password.$this->API->authorization['current_salt'], true), + ], ['datacenter' => $this->API->datacenter->curdc] ); - $this->API->datacenter->authorized = true; + $this->API->authorized = true; + $this->API->sync_authorization($this->API->datacenter->cur_dc); $this->API->get_updates_state(); $this->API->should_serialize = true; \danog\MadelineProto\Logger::log(['Logged in successfully!'], \danog\MadelineProto\Logger::NOTICE); - return $this->API->datacenter->authorization; + return $this->API->authorization; } } diff --git a/tests/testing.php b/tests/testing.php index d2a69e8c..5299ef00 100755 --- a/tests/testing.php +++ b/tests/testing.php @@ -15,7 +15,6 @@ require_once 'vendor/autoload.php'; if (file_exists('web_data.php')) { require_once 'web_data.php'; } - echo 'Deserializing MadelineProto from session.madeline...'.PHP_EOL; $MadelineProto = false; try { @@ -65,8 +64,7 @@ if ($MadelineProto === false) { } } $message = (getenv('TRAVIS_COMMIT') == '') ? 'I iz works always (io laborare sembre) (yo lavorar siempre) (mi labori ĉiam) (я всегда работать) (Ik werkuh altijd)' : ('Travis ci tests in progress: commit '.getenv('TRAVIS_COMMIT').', job '.getenv('TRAVIS_JOB_NUMBER').', PHP version: '.getenv('TRAVIS_PHP_VERSION')); -$secret = $MadelineProto->API->request_secret_chat(getenv('TEST_USERNAME')); -var_dump($MadelineProto->get_pwr_chat('@telegram')); +//$secret = $MadelineProto->API->request_secret_chat(getenv('TEST_SECRET_CHAT')); //$MadelineProto->API->request_secret_chat('@Harold_Saxon'); echo 'Serializing MadelineProto to session.madeline...'.PHP_EOL; echo 'Wrote '.\danog\MadelineProto\Serialization::serialize('session.madeline', $MadelineProto).' bytes'.PHP_EOL;